如何在 LINQ 中将一列中除了一个列值之外的所有值返回为空?

发布于 2024-10-27 20:07:43 字数 70 浏览 1 评论 0原文

我只想从数据库中返回一列值,并将其他列值返回为空。我怎样才能在 LINQ 中做到这一点?检索时还必须将不可为空字段的值设置为空

I want to return only one column value and other column values as null from database. how can i do that in LINQ? also have to make values of not nullable fields to null while retrieving

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

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

发布评论

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

评论(1

你的心境我的脸 2024-11-03 20:07:43

C#

var results = from item in db.items
              select (item.col1 == value ? item.col1 : null);

VB.NET

Dim results = From item in db.items
              Select iif(item.col1 == value ? item1.col : Nothing)

C#

var results = from item in db.items
              select (item.col1 == value ? item.col1 : null);

VB.NET

Dim results = From item in db.items
              Select iif(item.col1 == value ? item1.col : Nothing)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文