我正在通过存储过程将Dapper用于一些只读数据库调用。我有一个查询,要么返回 1 行,要么什么都不返回。
我正在像这样使用 Dapper:
using (var conn = new SqlConnection(ConnectionString))
{
conn.Open();
return conn.Query<CaseOfficer>("API.GetCaseOfficer",
new { Reference = reference },
commandType: CommandType.StoredProcedure).FirstOrDefault();
}
返回的 CaseOfficer 对象如下所示:
public class CaseOfficer
{
public string Title { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string Telephone { get; set; }
}
然后通过 ASP.NET Web API 应用程序将其作为 JSON 返回。
当存储过程返回结果时,我得到以下信息:
{
title: "Mr",
firstName: "Case",
lastName: "Officer",
email: "test@example.com",
telephone: "01234 567890"
}
但是当它什么也没返回时,我得到:
{
title: null,
firstName: null,
lastName: null,
email: null,
telephone: null
}
我怎样才能让 Dapper 返回 null (所以我可以检查并用 404 响应),而不是默认值(CaseOfficer)?