实体框架中“和”和不同操作的语法?

时间:2011-11-30 09:08:23

标签: c# .net linq entity-framework linq-to-entities

我想显示其accountid,id匹配并且还显示不同记录的记录。

var result = from a in cxt.tblInventoryProducts
             where a.aid == accID && a.id == id
             select new
             {
                 a.productType,
                 a.productName
             };

提前致谢

1 个答案:

答案 0 :(得分:3)

这样的东西
var result = from a in cxt.tblInventoryProducts
             where a.aid == accID && a.id == id
             group a by new { a.productType, a.productName } into grp
             select new
             {
                 grp.Key.productType,
                 grp.Key.productName
             };