Created
April 16, 2020 19:51
-
-
Save enisn/88ca7fccff285c383222354ed3c47114 to your computer and use it in GitHub Desktop.
Challenge #1 - Solution 2 - IFilter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IFilter | |
{ | |
Expression BuildExpression(Type entityType, Expression body); | |
IQueryable<TEntity> ApplyFilterTo<TEntity>(IQueryable<TEntity> query); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment