iorderedqueryable Questions
3
Solved
I am using patterns mentioned here
http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application
And i am ...
Clock asked 15/4, 2013 at 7:19
2
Solved
I have the following LINQ code:
var posts = (from p in db.Posts
.Include("Site")
.Include("PostStatus")
where p.Public == false
orderby p.PublicationTime
select p);
if (!chkShowIgnored.Ch...
Rhinarium asked 13/11, 2009 at 22:12
1
© 2022 - 2024 — McMap. All rights reserved.