This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// License: Apache 2.0 | |
// A generic base repository which other repositories (if needed) can inherit from | |
public class BaseRepository<TEntity> : IEntityRepository<TEntity> where TEntity : class | |
{ | |
internal DataContext context; | |
internal DbSet<TEntity> dbSet; | |
public BaseRepository(DataContext context) | |
{ |