RegisterTypes in Eloquera

pull/6/head
Mark McDowall 12 years ago committed by kay.one
parent 7f0dc84b29
commit d5900fc9eb

@ -3,6 +3,7 @@ using System.IO;
using System.Linq; using System.Linq;
using Eloquera.Client; using Eloquera.Client;
using NzbDrone.Common; using NzbDrone.Common;
using NzbDrone.Core.RootFolders;
namespace NzbDrone.Core.Datastore namespace NzbDrone.Core.Datastore
{ {
@ -48,9 +49,23 @@ namespace NzbDrone.Core.Datastore
db.OpenDatabase(databaseName); db.OpenDatabase(databaseName);
} }
RegisterTypeRules();
RegisterTypes(db);
return new EloqueraDb(db); return new EloqueraDb(db);
} }
private void RegisterTypeRules()
{
RootFolder rootFolder = null;
DB.TypeRules
.IgnoreProperty(() => rootFolder.FreeSpace)
.IgnoreProperty(() => rootFolder.UnmappedFolders);
}
private void RegisterTypes(DB db)
{
db.RegisterType(typeof(RootFolder));
}
} }
} }

Loading…
Cancel
Save