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

TestEqualLiteralNullReversed() private method

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