SQL 脚本中 LINQ 的 FirstOrDefault?
LINQ-to-SQL FirstOrDefault
或 SingleOrDefault
的 SQL 语言关键字是什么?
是TOP(1)
吗?
示例:
SELECT TOP(1) @ItemCode = ItemCode FROM VendorItem WHERE VendorId = @VendorId
无论如何,结果不能超过 1 个,因为存在唯一键约束,我是否必须拼写出 TOP(1) 或其他任何内容?
注意:我不需要 LINQ 答案,我的问题是如何编写 sql 脚本。
What is the SQL language keyword for the LINQ-to-SQL FirstOrDefault
or SingleOrDefault
?
Is it TOP(1)
?
EXAMPLE:
SELECT TOP(1) @ItemCode = ItemCode FROM VendorItem WHERE VendorId = @VendorId
There can't be more than 1 results anyway since there is a Unique Key constranint, do I have to spell out the TOP(1) or whatever it is?
Note: I don't need LINQ answers, my question is how to write the sql script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果存在唯一键约束,则无需添加任何内容即可实现 FirstOrDefault 行为。对于其他查询,您可以添加
到 SQL 查询的末尾。这只会给您第一个符合您的限制的答案。
评论后编辑:要将其作为.NET中的标量,您可以使用 SQLCommand.ExecuteScalar 方法。
If there is a unique key constraint you do not need to add anything to have the FirstOrDefault behavior. For other queries you can add
to the end of your SQL query. This will just give you the first answer which matches your constraints.
Edit after comment: To get it as a scalar in .NET you can use the SQLCommand.ExecuteScalar method.