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

TestIntBitwiseAnd() private method

private TestIntBitwiseAnd ( ) : void
return void
        public virtual void TestIntBitwiseAnd()
        {
            var band = db.Customers.Where(c => c.CustomerID == "ALFKI").Sum(c => ((c.CustomerID == "ALFKI") ? 6 : 6) & 3);
            AssertValue(2, band);
        }
NorthwindExecutionTest