mirror of https://github.com/Radarr/Radarr
75 lines
1.6 KiB
C#
75 lines
1.6 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Eloquera.Client;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public class EloqueraDb : IDisposable
|
|
{
|
|
private readonly DB _db;
|
|
|
|
public EloqueraDb(DB db)
|
|
{
|
|
_db = db;
|
|
}
|
|
|
|
public IEnumerable<T> AsQueryable<T>()
|
|
{
|
|
return _db.Query<T>();
|
|
}
|
|
|
|
public T Insert<T>(T obj)
|
|
{
|
|
//Todo: need to verify that this is properly setting the ID of T
|
|
_db.Store(obj);
|
|
return obj;
|
|
}
|
|
|
|
public long InsertAndGetId<T>(T obj)
|
|
{
|
|
return _db.Store(obj);
|
|
}
|
|
|
|
public IList<T> InsertMany<T>(IEnumerable<T> objects)
|
|
{
|
|
return DoMany(objects, Insert);
|
|
}
|
|
|
|
public T Update<T>(T obj)
|
|
{
|
|
_db.Store(obj);
|
|
return obj;
|
|
}
|
|
|
|
public IList<T> UpdateMany<T>(IEnumerable<T> objects)
|
|
{
|
|
return DoMany(objects, Update);
|
|
}
|
|
|
|
public void Delete<T>(T obj) where T : new()
|
|
{
|
|
_db.Delete(obj);
|
|
}
|
|
|
|
public void DeleteMany<T>(IEnumerable<T> objects) where T: new()
|
|
{
|
|
foreach (var o in objects)
|
|
{
|
|
Delete(o);
|
|
}
|
|
}
|
|
|
|
private IList<T> DoMany<T>(IEnumerable<T> objects, Func<T, T> function)
|
|
{
|
|
return objects.Select(function).ToList();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_db.Dispose();
|
|
}
|
|
}
|
|
}
|