我对以下条件有两个条件,IsThere
和Conditional
由用户提供。
它们可以是真,假或“未给出”。
var result = (from DataRow dt in resultForfaultStat.Rows
select new fault_StatisticsViewModel{
Name = dt["name"].ToString(),
SureName = float.Parse(dt["fname"].ToString()),
IsThere = Boolean.Parse(dt["is_there"].ToString()),
Conditional = Boolean.Parse(dt["good_or_bad"].ToString())
})
.Where(s => s.IsThere == true && s.Conditional == true)
.ToList();
我应该如何设法动态传递所有这些信息?