Click here to Skip to main content
15,867,308 members

Comments by Member 9956700 (Top 14 by date)

Member 9956700 27-Feb-20 10:34am View    
how to resolve this error?
Example

var a = from ss in studentList
.OrderByDescending(x=>x.StudentID).Select(x=>x.StudentName)
select ss.FirstOrDefault();
Member 9956700 27-Feb-20 2:45am View    
you meant..

var result = from LDRSectionReference in LDR.LDRFlagName
.OrderByDescending(x=>x.SectionID)
.Select(x->x.LDRSectionReference);
Member 9956700 14-Oct-19 23:41pm View    
Thanks Richard for your support. But there is a small twist- Yes I 'm trying to export table to CSV but I need to open/show the "save dialog box" by which I can give my preferred location and name to the file.
Is there any way I can proceed?
Member 9956700 13-Oct-19 23:59pm View    
Can you advise Me what changes needs to be done in action method to receive above mentioned data.
Member 9956700 11-Oct-19 0:30am View    
I tried with both, But in Controller i am always getting null of array or objects.
Example: I am 3 values. a[0] = "Apple a[1] = Fruit and a[2] = USA.. in action method i am getting always a[0] = null a[1] = null a[2] = null.