How to set all data come from a certain table to be sorted with date?
I created a model.edmx from my database, What i want to do it to make all records开发者_JAVA技巧 come from one of the table to be sorted by DateCreated field, is that possible from the designer or how to do it?
No it is not possible. You must define OrderBy
in linq-to-entities query.
精彩评论