I'm trying to convert from Entity Framework to Dapper to hopefully improve data access performance. The queries I use are in the form of predicates like so Expression<Func<TModel, bool>>. To give an example: I have the following code which I need to convert to using Dapper. What I currently do: public async Task<List<TModel>> Get(Expression<Func<TModel, bool>> query) { // this.Context is of type D