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