T
Tony Johansson
Hello!
I just wonder if this linq query
int totalRows = ccrFromObj.myWorksheetRowList.Count(o => o.WorksheetID ==
workSheetID);
can be write in this way just adding a return for the expression
int totalRows = ccrFromObj.myWorksheetRowList.Count(o => return
o.WorksheetID == workSheetID);
//Tony
I just wonder if this linq query
int totalRows = ccrFromObj.myWorksheetRowList.Count(o => o.WorksheetID ==
workSheetID);
can be write in this way just adding a return for the expression
int totalRows = ccrFromObj.myWorksheetRowList.Count(o => return
o.WorksheetID == workSheetID);
//Tony