public void WhereClauseWithGetDatePartDay()
        {
            var store          = new EntityStore(_dbConnection);
            var singleEmployee = store.GetSingle <Employee>(e => SqlFunctions.GetDay(e.Birthdate) >= 4);

            Xunit.Assert.NotNull(singleEmployee);
        }