mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 01:32:55 -07:00
Fixed the issues where the DB was being disposed too early
This commit is contained in:
parent
47f323fcdd
commit
96e3e88261
16 changed files with 86 additions and 91 deletions
|
@ -9,7 +9,7 @@ using Ombi.Store.Entities;
|
|||
|
||||
namespace Ombi.Store.Repository
|
||||
{
|
||||
public interface IRepository<T> : IDisposable where T : Entity
|
||||
public interface IRepository<T> where T : Entity
|
||||
{
|
||||
Task<T> Find(object key);
|
||||
IQueryable<T> GetAll();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue