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

TestIntModulo() private method

private TestIntModulo ( ) : void
return void
        public virtual void TestIntModulo()
        {
            var three = db.Customers.Where(c => c.CustomerID == "ALFKI").Sum(c => ((c.CustomerID == "ALFKI") ? 7 : 7) % 4);
            AssertValue(3, three);
        }
NorthwindExecutionTest