public void ApplyFiltering_GreaterThanBetweenTwoStringsInEF_SqlServerProvider_ShouldThrowErrorWhenCompatibilityLayerIsDisabled()
 {
     GridifyGlobalConfiguration.DisableEntityFrameworkCompatibilityLayer();
     Assert.Throws <InvalidOperationException>(() => _dbContext.Users.ApplyFiltering("name > h").ToQueryString());
 }