public void WhereClauseWithGetDatePartMinute()
        {
            var store          = new EntityStore(_dbConnection);
            var singleEmployee = store.GetSingle <Order>(o => SqlFunctions.GetMinute(o.OrderDate) >= 0);

            Xunit.Assert.NotNull(singleEmployee);
        }