LINQ to SQL 将查询结果存储在变量中
例如,我正在搜索特定人员 ID,并且希望将该 ID 存储到局部变量或实例变量中。如何使用 LINQ to SQL 检索查询结果并将其存储在 int 变量中? 假设我们有这个查询
from user in dbo.DoctorsName
where doctorsName = "Foo Bar"
select DOC_ID;
For example I am searching for a specific persons ID and I want to store that ID to a local variable or instance variable. How do I retrieve Query results and stores them in a int Variable with LINQ to SQL?
Assuming we have this query
from user in dbo.DoctorsName
where doctorsName = "Foo Bar"
select DOC_ID;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以像这样使用
FirstOrDefault()
:You can use
FirstOrDefault()
like this:这应该有帮助。
如果没有符合您的条件的记录,则使用 FirstOrDefault() 可能会引发异常。为此,您可以尝试使用 -
This should help.
If there are no records for your condition then using FirstOrDefault() can throw an exception. For this you can try using -
与此类似:
现在您的变量位于 TicketDepartment.department 中
Similar to this:
and now you have your variable in ticketDepartment.department