日期:2014-05-20 浏览次数:20762 次
//可空类型用 Nullable<T>.Equals //如:public int? Currency_User_ID where Nullable<int>.Equals(e.Currency_User_ID,变量) //引用类型用Nullable.Equals。 //public string Currency_User_ID where Nullable.Equals(e.Currency_User_ID, 变量)
------解决方案--------------------
var query = from t in T where string.IsNullOrEmpty(t.CURRENCY_USER_ID.ToString()) == true | Convert.ToInt32(t.CURRENCY_USER_ID)==42 select t;
------解决方案--------------------
where vt.Currency_User_ID == curr.USER_ID || vt.Currency_User_ID.value ==null