编程语言
首页 > 编程语言> > C#如何返回null或模型

C#如何返回null或模型

作者:互联网

我有Store Model,如果我的模型为null,我想返回null.

public Store Details() => db.Store.Single(s => s.Id == 1);

此查询有时会返回一个值,有时会返回null.如何将返回类型具体包含在内?

解决方法:

尝试使用

public Store Details() => db.Store.FirstOrDefault(s => s.Id == 1);

标签:c,asp-net,asp-net-mvc,poco,c-7-0
来源: https://codeday.me/bug/20190717/1486768.html