如何从Fruit ID中选择Fruit对象(唯一)

发布于 2024-09-25 07:37:06 字数 314 浏览 3 评论 0原文

这是从 ID 中选择我需要的 Fruit 对象的最佳方法吗?

因此,我获取 ID 并返回其名称,ID 是唯一的,因此只会有一个结果。

如果我不使用 .Single() 我会得到 IQueryable 但我只想要单个对象

var fruitName = (from p in fruitDB.Fruits
                               where p.FruitID == id
                               select p.FruitName).Single();

Is this the best way to select the Fruit object I need from the ID?

So I'm taking the ID and returning its name, id being unique, so there will only ever be one result.

If I don't use .Single() I get IQueryable but I just want the single object

var fruitName = (from p in fruitDB.Fruits
                               where p.FruitID == id
                               select p.FruitName).Single();

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

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

发布评论

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

评论(2

围归者 2024-10-02 07:37:06

.Single() 很好 - 但是如果它没有任何结果,它将抛出异常。如果您希望它返回 null,请改为执行 SingleOrDefault()。这将为您提供唯一返回的对象,或者如果没有找到,则为 null。

如果结果集将返回 1 个以上的项目(不太可能带有 ID),并且您只需要第一个项目,请使用 First()FirstOrDefault()

.Single() is fine - however if it doesn't have any results it will throw an exception. If you want it to return null instead do SingleOrDefault(). This will give you the only object that was returned, or if none were found, null.

If the result set will return more than 1 item (not likely with an ID), and you only want the first item, use First() or FirstOrDefault().

污味仙女 2024-10-02 07:37:06

试试这个

fruitDb.Fruits.SingleOrDefault(f => f.FruitId == id);

Try this instead

fruitDb.Fruits.SingleOrDefault(f => f.FruitId == id);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文