mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
stuff
This commit is contained in:
parent
39cac898c6
commit
fc3ed1105d
26 changed files with 294 additions and 166 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Ombi.Store.Entities;
|
||||
|
||||
|
@ -17,5 +18,6 @@ namespace Ombi.Store.Repository
|
|||
Task<RequestBlobs> InsertAsync(RequestBlobs entity);
|
||||
RequestBlobs Update(RequestBlobs entity);
|
||||
void UpdateAll(IEnumerable<RequestBlobs> entity);
|
||||
IQueryable<RequestBlobs> GetAllQueryable();
|
||||
}
|
||||
}
|
|
@ -143,5 +143,10 @@ namespace Ombi.Store.Repository
|
|||
Db.SaveChanges();
|
||||
|
||||
}
|
||||
|
||||
public IQueryable<RequestBlobs> GetAllQueryable()
|
||||
{
|
||||
return Db.Requests.AsQueryable();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue