better without.

This commit is contained in:
David Lebee
2018-10-17 21:42:54 -05:00
parent 3985530dbe
commit a614b3afb3
3 changed files with 5 additions and 15 deletions
-4
View File
@@ -92,10 +92,6 @@ namespace PoweredSoft.DynamicQuery
.Cast<IFilterInterceptor>()
.Aggregate(filter, (previousFilter, interceptor) => interceptor.InterceptFilter(previousFilter));
ret = Interceptors.Where(t => t is IFilterInterceptor<T>)
.Cast<IFilterInterceptor<T>>()
.Aggregate(filter, (previousFilter, interceptor) => interceptor.InterceptFilter<T>(previousFilter));
return ret;
}