使用 Linq To Sql lambda 表达式检索更少的表字段

发布于 2024-09-10 17:46:29 字数 484 浏览 3 评论 0原文

我想知道如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春风十里 2024-09-17 17:46:29

您提出的第二个解决方案不适用于 LINQ to SQL,因为它不允许您在 LINQ 查询中创建新的 LINQ to SQL 实体,因为该实体没有更改跟踪。

最好的选择是使用匿名类型(如果可能)或创建数据传输对象( DTO)仅包含这两个字段:

public class ProductDto
{
    public ProductId { get; set; }
    public ProductCode { get; set; }
}

from p in base.dc.E_Products
select new ProductDto()
{
    ProductId = p.ProductId,
    ProductCode = p.ProductCode,
});

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:

public class ProductDto
{
    public ProductId { get; set; }
    public ProductCode { get; set; }
}

from p in base.dc.E_Products
select new ProductDto()
{
    ProductId = p.ProductId,
    ProductCode = p.ProductCode,
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文