日期:2014-05-20 浏览次数:20915 次
string countryDHLId = "Area" + countryInfo.DHLArea.ToString(); var info = from df in db.DHLFreights where df.WeightMax >= weight && df.WeightMin <= weight select GetPropertyValue(df,countryDHLId); double dhlFreight = double.Parse(info.FirstOrDefault()); private static object GetPropertyValue(object obj, string property) { System.Reflection.PropertyInfo propertyInfo=obj.GetType().GetProperty(property); return propertyInfo.GetValue(obj, null); }
------解决方案--------------------
info是一个集合列表
应该取其中一个值进行转化
double dhlFreight = double.Parse(info.First().countryDHLId);
------解决方案--------------------
LINQ 返回的是一个集合。
取出集合的第一个元素用.First()
double.Parse(info.First().countryDHLId)