使用 Linq To Sql lambda 表达式检索更少的表字段
我想知道如何使用 Linq To SQl Lambda 表达式从表中获取数据子集...
假设我有一个表 tbl_Product,其中包含字段 ProductId、ProductCode、ProductName、Description、WhyBuyCopy,我如何获取考虑到检索所有数据需要更长的时间(使用“设置统计时间打开”进行检查),不需要其他字段时是否需要前三个字段?
一种解决方案可能是创建一个扩展 linq2sql 创建的部分类,仅包含所需的字段,但我试图避免这种情况...
另一种解决方案当然是使用
from p in base.dc.E_Products
select new E_Product
{
ProductId = p.ProductId,
ProductCode = p.ProductCode,
etc
})
,但我很好奇是否有上述代码的等效 lambda 表达式。
谢谢
I'd like to know how to get a subset of data from a table using Linq To SQl Lambda expressions...
Let's say I have a table tbl_Product, with fields ProductId, ProductCode, ProductName, Description, WhyBuyCopy, how do I get only the first three fields when the others are not needed given that retrieving all data takes a second longer (checked using 'set statistics time on')?
One solution could be to create a partial class that extends that created by linq2sql, with only the fields needed, but I am trying to avoid that...
The other solution of course is to use
from p in base.dc.E_Products
select new E_Product
{
ProductId = p.ProductId,
ProductCode = p.ProductCode,
etc
})
but I am very curious to know whether there is an equivalent lambda expression for the above code.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您提出的第二个解决方案不适用于 LINQ to SQL,因为它不允许您在 LINQ 查询中创建新的 LINQ to SQL 实体,因为该实体没有更改跟踪。
最好的选择是使用匿名类型(如果可能)或创建数据传输对象( DTO)仅包含这两个字段:
The second solution you propose does not work with LINQ to SQL, because it won't allow you to create a new LINQ to SQL entity within a LINQ query, since this entity won't have change tracking.
Your best option is to use an anonymous type (if possible) or create a Data Transfer Object (DTO) with only those two fields: