悟天的小别墅

人心忧虑,屈而不升。 一句良言,使心欢喜。

导航

把类型转为可空类型,如下例: 

 int? max = (from t in db.Tags
where t.ParentId == request.TargetId
select (int?) t.SortOrder).Max();

if (!max.HasValue)
max = 1;
else
max += 1;