You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class Products {
public bool isOk { get; set; }
}
var select = fsql.Select<Products>().Where(a => SqlExt.IsNull(a.isOk, false) == false);
var sqlStr = select.ToSql(); // SELECT a.[isOk] FROM [Products] a WHERE (not(isnull(a.[isOk], 0)))
var list = select.ToList(); // 执行到这里出错,