6 lines
122 B
C#
6 lines
122 B
C#
|
public IQueryable<Category>
|
||
|
GetCategories()
|
||
|
{
|
||
|
var db = new Northwind();
|
||
|
return db.Categories.Include(c => c.Products);
|
||
|
}
|