class Cat
{
public int CatID;
public string Name;
public ICollection<Post> Posts;
}
class Post
{
public int PostID;
public string Name
public int CatID;
public virtual Cat Parent;
}
And I want to load all the Cat(egories) with their Posts so:
var cats = context.Cat.Include(c => c.Posts);
Now I want to limit the number of Posts that are returned, can someone show me how to do that?
I'm using EntityFramework 4.3.1
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…