Igor Tkachev
Igor Tkachev
What SQL do you expect?
What about ToArray?
For the following test: ``` c# [Test] public void Any61([DataContexts] string context) { using (var db = GetDataContext(context)) Assert.AreEqual( Child. Any(c => c.ParentID > 3), db.GetTable().Any(c => c.ParentID > 3));...
It works for DB2 version that I have. Anyway, what do you think should be generated?
Can we get some test showing this issue?
MySql bool equivalent is tinyint(1). Added conversion to bool for tinyint(1).
The problem you are trying to solve is easily fixed by using the following: `x.A == Sql.AsNotNull(x.B)` In this case you explicitly see what I do here (ignoring NULLs). (Maybe...
I think you can add new option like UseSqlSemantic or something like that and do any changes you need for this. In this case there will be no braking change...
OK. I would use more generic name to cover all possible C#/SQL semantic difference cases.
/azp run test-all