我有一个模型类,它有一个名为生日的属性,它是一个DateTime?
属性。我还有一个只读的计算列,如下所示:
public int? RacingAge
{
get
{
if (!Birthday.HasValue)
return null;
else
return DateTime.Today.Year - Birthday.Value.Year;
}
}
当我运行查询时,此值会在返回的 Json 中返回,但该属性不是元数据的一部分,因此不会被设置。
我需要做什么才能强制它包含在元数据中?