【发布时间】:2011-11-30 09:08:23
【问题描述】:
我想显示 accountid、id 匹配的记录,并显示不同的记录。
var result = from a in cxt.tblInventoryProducts
where a.aid == accID && a.id == id
select new
{
a.productType,
a.productName
};
提前致谢
【问题讨论】:
标签: c# .net linq entity-framework linq-to-entities