EF 取出demical数据,但需要去点小数,排序
Posted 欧阳小菜菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EF 取出demical数据,但需要去点小数,排序相关的知识,希望对你有一定的参考价值。
try { BasePaperWeightDAL.Get(o => o.IsDeleted == false && o.IsEnabled == true).OrderByDescending(o => o.Sort). ThenByDescending(o => o.CreateTime).ToList().ForEach(o => { if (o.WeightValue != null) { o.WeightValue = Convert.ToInt32(o.WeightValue); } LstBasePaperWeight.Add(o); }); } catch (Exception ex) { }
以上是关于EF 取出demical数据,但需要去点小数,排序的主要内容,如果未能解决你的问题,请参考以下文章
python 在pandas中的read_csv时将值转换为demical