NLite.Data.Test.DateTimeTest.TestDateTimeSecond C# (CSharp) Method

TestDateTimeSecond() private method

private TestDateTimeSecond ( ) : void
return void
        public virtual void TestDateTimeSecond()
        {
            var second = db.Customers.Where(c => c.CustomerID == "ALFKI").Max(c => new DateTime((c.CustomerID == "ALFKI") ? 1997 : 1997, 7, 4, 3, 5, 6).Second);
            AssertValue(6, second);
        }
DateTimeTest