gpt4 book ai didi

c# - Linq 从表中选择 *

转载 作者:行者123 更新时间:2023-11-30 13:40:54 24 4
gpt4 key购买 nike

我需要从表中选择所有字段,我尝试使用以下代码执行此操作,但我收到错误通知此时类名无效

from item in context.CreateQuery<permitdocumentfields>()
where item.Id == new Guid(Request["view"])
select new
{ permitdocumentfields }

如何使这些东西像 FROM TABLE SELECT * 一样工作?

最佳答案

from item in context.CreateQuery<permitdocumentfields>()
where item.Id == new Guid(Request["view"])
select item

查看帖子了解更多详情:SQL to LINQ ( Visual Representation )

简单选择 enter image description here

使用过滤器选择并选择新的 enter image description here

注意:select new 仅当您只想构造新对象时才需要。

关于c# - Linq 从表中选择 *,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6608441/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com