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

TestNotEqualLiteralNull() private method

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