NLite.Data.Test.NorthwindExecutionTest.TestNotEqualLiteralNullReversed C# (CSharp) Method

TestNotEqualLiteralNullReversed() private method

private TestNotEqualLiteralNullReversed ( ) : void
return void
        public virtual void TestNotEqualLiteralNullReversed()
        {
            var q = db.Customers.Select(c => c.CustomerID == "ALFKI" ? null : c.CustomerID).Where(x => null != x);
            var n = q.Count();
            AssertValue(90, n);
        }
NorthwindExecutionTest