mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Added the ability to specify how many episodes we should cache at a time. #1598
This commit is contained in:
parent
83d7959f5a
commit
03f7aba47e
10 changed files with 129 additions and 37 deletions
|
@ -60,6 +60,11 @@ namespace Ombi.Store.Repository
|
|||
await _ctx.SaveChangesAsync();
|
||||
}
|
||||
|
||||
public async Task<int> SaveChangesAsync()
|
||||
{
|
||||
return await _ctx.SaveChangesAsync();
|
||||
}
|
||||
|
||||
public IIncludableQueryable<TEntity, TProperty> Include<TEntity, TProperty>(
|
||||
IQueryable<TEntity> source, Expression<Func<TEntity, TProperty>> navigationPropertyPath)
|
||||
where TEntity : class
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue