CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of Repository interface
C#
public interface IRepository<TEntity> where TEntity : EntityObject
{
   TEntity GetById(int id);
   IQueryable<TEntity> GetAll();
 
   IQueryable<TEntity> Query();
 
   IRepository<TEntity> With(Expression<Func<TEntity, object>> path);
   IRepository<TEntity> With<T>(Expression<Func<T, object>> path);
}
by Dennis van der Stelt   July 22, 2009 @ 5:25am
629 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate