Added the Emby Cacher, we now cache the Emby data!

This commit is contained in:
tidusjar 2017-09-02 00:18:54 +01:00
commit 012a82ca2d
19 changed files with 441 additions and 20 deletions

View file

@ -17,6 +17,7 @@ namespace Ombi.Store.Context
DbSet<PlexContent> PlexContent { get; set; }
DbSet<PlexEpisode> PlexEpisode { get; set; }
DbSet<RadarrCache> RadarrCache { get; set; }
DbSet<EmbyContent> EmbyContent { get; set; }
DatabaseFacade Database { get; }
EntityEntry<T> Entry<T>(T entry) where T : class;
EntityEntry<TEntity> Attach<TEntity>(TEntity entity) where TEntity : class;