added support for 0 based sequential ids to our object db.

This commit is contained in:
kay.one 2013-02-15 19:50:22 -08:00
parent a0c7ccfe7c
commit c6fa3cc02b
17 changed files with 375 additions and 29 deletions

View file

@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Linq;
using Eloquera.Client;
namespace NzbDrone.Core.Datastore
@ -9,6 +6,8 @@ namespace NzbDrone.Core.Datastore
public abstract class BaseRepositoryModel
{
[ID]
public long Id;
private long _eqId;
public int Id { get; set; }
}
}