I have a table like below:
EmployeeId
EmployeeName
RequestId
RequestName
EmployeeId
RequestId
I need to a to assign requests in a sequential fashion(those who has mininum number of requests).
Can I know how to get employee who has minimum requests using linq???
Thanks,
Mahesh
Assuming the class containing EmployeeID and RequestID (the third table) is named “Foo”, it could be
This is drycoded and may be wrong. =)