当前位置:  开发笔记 > 编程语言 > 正文

linq to sql LoadWith返回限制字段

如何解决《linqtosqlLoadWith返回限制字段》经验,为你挑选了0个好方法。

有没有办法使用LoadWith但指定返回的字段?

例如,如果我有两个表1)产品2)类别

并做一些类似的事情

DataLoadOptions dlo = new DataLoadOptions();
dlo.LoadWith(d => d.Categories);
db.LoadOptions = dlo;

MyDataContext db = new MyDataContext();
var result = from d in db.Products
             select d;

当我在profiler中检查查询时,我看到正在返回Categories表中的所有行.我真正需要的只是"名称"字段.

我知道我可以使用连接重写查询,但我需要将结果集作为"Product"数据类型返回,这就是我使用LoadWith的原因.

推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有