如何使用 Dynamic Linq 命名字段?

发布于 2024-07-13 02:11:32 字数 524 浏览 5 评论 0原文

我有一个动态进行的巨大查询,但我希望 select 语句不输出列名,而是输出自定义值。 例如,如果我正在执行普通的 Linq 查询,我可以执行以下操作:

var v = from p in db.items select new { name = p.item_name, price = p.item_price };

这将为我提供不错的“.name”和“.price”访问器

,但如果我使用 Dyanmic Linq,我可以这样做:

var v = db.items.Select("new (item_name,item_price)");

工作正常,但

var v = db.items.Select("new (name=item_name,price=item_price)");

我收到错误: “类型‘item’中不存在属性或字段‘名称’”

这可以完成吗?

I have a huge query that is being made dynamically, but I want the select statement to not output the column names, buut custom values. FOr example, if I am doing a normal Linq query, I can do something like this:

var v = from p in db.items select new { name = p.item_name, price = p.item_price };

which will give me the nice '.name' and '.price' accessors

but if I am using Dyanmic Linq, I can do this:

var v = db.items.Select("new (item_name,item_price)");

works fine, but

var v = db.items.Select("new (name=item_name,price=item_price)");

I get an error:
"No property or field 'name' exists in type 'item'"

Can this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

森林很绿却致人迷途 2024-07-20 02:11:32

好的,弄清楚了,这就是所需要的:

var v = db.items.Select("new (item_name as name,item_price as price)");

ok, figured it out, this wis what was needed:

var v = db.items.Select("new (item_name as name,item_price as price)");
山人契 2024-07-20 02:11:32

你也可以试试这个。

var v = db.items.Select("new(it[\"item_name\"]  as name,it[\"item_price\"] as price)"); 

you can also try this.

var v = db.items.Select("new(it[\"item_name\"]  as name,it[\"item_price\"] as price)"); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文