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

TestIntBitwiseNot() private method

private TestIntBitwiseNot ( ) : void
return void
        public virtual void TestIntBitwiseNot()
        {
            var bneg = db.Customers.Where(c => c.CustomerID == "ALFKI").Sum(c => ~((c.CustomerID == "ALFKI") ? -1 : -1));
            AssertValue(~-1, bneg);
        }
NorthwindExecutionTest