Skip to content

Instantly share code, notes, and snippets.

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