public void WhereClauseWithAddSeconds()
        {
            var store          = new EntityStore(_dbConnection);
            var singleEmployee = store.GetSingle <Order>(o => SqlFunctions.AddSeconds(o.OrderDate, -3) >= DateTime.Now.AddMonths(-90 * 12));

            Xunit.Assert.NotNull(singleEmployee);
        }