/ Published in: C#
Expand |
Embed | Plain Text
var beverageCategory = (from c in context.Categories .Include("Products") where c.CategoryName == "Beverages" select c).Single();
You need to login to post a comment.
housecor on 10/16/10
1 person have marked this snippet as a favorite
var beverageCategory = (from c in context.Categories .Include("Products") where c.CategoryName == "Beverages" select c).Single();
You need to login to post a comment.