标签:creat val false enabled desc except class ble col
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)
{
}
标签:creat val false enabled desc except class ble col
原文地址:http://www.cnblogs.com/ouylvr0625/p/8004226.html