Is it possible to sort a MembershipUserCollection by IsApproved and then Comment without modifying the Stored Procedure? Can Linq do this?
Thanks!
|
Is it possible to sort a MembershipUserCollection by IsApproved and then Comment without modifying the Stored Procedure? Can Linq do this? Thanks!
| |||
|
feedback
|
|
I found another example that used the following code (I used a generic List instead of MembershipUserCollection):
EDIT: DOH! Need ThenBy() instead of a second OrderBy():
| ||||
|
feedback
|
|
There is also this option to make it LINQ friendly before ordering.
| |||
|
feedback
|
|
Not directly--the MembershipUsersCollection isn't linq friendly. You can, however, pretty easily make it Linq friendly as Mike C. points out--just new up a | |||
|
feedback
|