コード例 #1
0
        public void WhereClauseWithGetDatePartHour()
        {
            var store          = new EntityStore(_dbConnection);
            var singleEmployee = store.GetSingle <Order>(o => SqlFunctions.GetHour(o.OrderDate) >= 0);

            Xunit.Assert.NotNull(singleEmployee);
        }