Skip to content

Instantly share code, notes, and snippets.

@ahmad2x4
Created September 27, 2014 07:44
Show Gist options
  • Save ahmad2x4/28e44b5e70aa57e21e86 to your computer and use it in GitHub Desktop.
Save ahmad2x4/28e44b5e70aa57e21e86 to your computer and use it in GitHub Desktop.
Blog automapper expressions
public interface IRepository<TI, TO>
{
void Add(TI obj);
IQueryable<TO> Find(Expression<Func<TI, bool>> predicate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment