mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
added support for 0 based sequential ids to our object db.
This commit is contained in:
parent
a0c7ccfe7c
commit
c6fa3cc02b
17 changed files with 375 additions and 29 deletions
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue