Skip to content

Instantly share code, notes, and snippets.

@margusmartsepp
Created April 19, 2016 16:55
Show Gist options
  • Save margusmartsepp/0fe5ab2a07ba452110e496d531fce3ee to your computer and use it in GitHub Desktop.
Save margusmartsepp/0fe5ab2a07ba452110e496d531fce3ee to your computer and use it in GitHub Desktop.
EF4 linq to sql repository interface
public interface IRepository<T>
{
IQueryable<T> Filter(Expression<Func<T, bool>> predicate);
int Insert(T entity);
int Delete(T entity);
int Save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment