//list获取某一列的和
decimal total = detailList.Sum(n => n.Amount);
---可空类型转换int?====int
int
? test =
null
;
//定义一个int?赋值空
a = test ?? 0;
//test??0 当test不为空时,直接返回值,为空时返回??后的值