diff --git a/Jellyfin.Data/Entities/Artwork.cs b/Jellyfin.Data/Entities/Artwork.cs
index be13686dc..da31d686e 100644
--- a/Jellyfin.Data/Entities/Artwork.cs
+++ b/Jellyfin.Data/Entities/Artwork.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,188 +9,194 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Artwork
- {
- partial void Init();
+ [Table("Artwork")]
+ public partial class Artwork
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Artwork()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Artwork()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Artwork CreateArtworkUnsafe()
- {
- return new Artwork();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Artwork CreateArtworkUnsafe()
+ {
+ return new Artwork();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- ///
- ///
- ///
- public Artwork(string path, global::Jellyfin.Data.Enums.ArtKind kind, global::Jellyfin.Data.Entities.Metadata _metadata0, global::Jellyfin.Data.Entities.PersonRole _personrole1)
- {
- if (string.IsNullOrEmpty(path)) throw new ArgumentNullException(nameof(path));
- this.Path = path;
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ ///
+ ///
+ ///
+ public Artwork(string path, Enums.ArtKind kind, Metadata _metadata0, PersonRole _personrole1)
+ {
+ if (string.IsNullOrEmpty(path)) throw new ArgumentNullException(nameof(path));
+ this.Path = path;
- this.Kind = kind;
+ this.Kind = kind;
- if (_metadata0 == null) throw new ArgumentNullException(nameof(_metadata0));
- _metadata0.Artwork.Add(this);
+ if (_metadata0 == null) throw new ArgumentNullException(nameof(_metadata0));
+ _metadata0.Artwork.Add(this);
- if (_personrole1 == null) throw new ArgumentNullException(nameof(_personrole1));
- _personrole1.Artwork = this;
+ if (_personrole1 == null) throw new ArgumentNullException(nameof(_personrole1));
+ _personrole1.Artwork = this;
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- ///
- ///
- ///
- public static Artwork Create(string path, global::Jellyfin.Data.Enums.ArtKind kind, global::Jellyfin.Data.Entities.Metadata _metadata0, global::Jellyfin.Data.Entities.PersonRole _personrole1)
- {
- return new Artwork(path, kind, _metadata0, _personrole1);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static Artwork Create(string path, Enums.ArtKind kind, Metadata _metadata0, PersonRole _personrole1)
+ {
+ return new Artwork(path, kind, _metadata0, _personrole1);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Path
- ///
- protected string _Path;
- ///
- /// When provided in a partial class, allows value of Path to be changed before setting.
- ///
- partial void SetPath(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Path to be changed before returning.
- ///
- partial void GetPath(ref string result);
-
- ///
- /// Required, Max length = 65535
- ///
- [Required]
- [MaxLength(65535)]
- [StringLength(65535)]
- public string Path
- {
- get
- {
- string value = _Path;
- GetPath(ref value);
- return (_Path = value);
- }
- set
- {
- string oldValue = _Path;
- SetPath(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Path = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for Kind
- ///
- internal global::Jellyfin.Data.Enums.ArtKind _Kind;
- ///
- /// When provided in a partial class, allows value of Kind to be changed before setting.
- ///
- partial void SetKind(global::Jellyfin.Data.Enums.ArtKind oldValue, ref global::Jellyfin.Data.Enums.ArtKind newValue);
- ///
- /// When provided in a partial class, allows value of Kind to be changed before returning.
- ///
- partial void GetKind(ref global::Jellyfin.Data.Enums.ArtKind result);
+ ///
+ /// Backing field for Path
+ ///
+ protected string _Path;
+ ///
+ /// When provided in a partial class, allows value of Path to be changed before setting.
+ ///
+ partial void SetPath(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Path to be changed before returning.
+ ///
+ partial void GetPath(ref string result);
- ///
- /// Indexed, Required
- ///
- [Required]
- public global::Jellyfin.Data.Enums.ArtKind Kind
- {
- get
- {
- global::Jellyfin.Data.Enums.ArtKind value = _Kind;
- GetKind(ref value);
- return (_Kind = value);
- }
- set
- {
- global::Jellyfin.Data.Enums.ArtKind oldValue = _Kind;
- SetKind(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Required, Max length = 65535
+ ///
+ [Required]
+ [MaxLength(65535)]
+ [StringLength(65535)]
+ public string Path
+ {
+ get
{
- _Kind = value;
+ string value = _Path;
+ GetPath(ref value);
+ return (_Path = value);
}
- }
- }
+ set
+ {
+ string oldValue = _Path;
+ SetPath(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Path = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for Kind
+ ///
+ internal Enums.ArtKind _Kind;
+ ///
+ /// When provided in a partial class, allows value of Kind to be changed before setting.
+ ///
+ partial void SetKind(Enums.ArtKind oldValue, ref Enums.ArtKind newValue);
+ ///
+ /// When provided in a partial class, allows value of Kind to be changed before returning.
+ ///
+ partial void GetKind(ref Enums.ArtKind result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Indexed, Required
+ ///
+ [Required]
+ public Enums.ArtKind Kind
+ {
+ get
+ {
+ Enums.ArtKind value = _Kind;
+ GetKind(ref value);
+ return (_Kind = value);
+ }
+ set
+ {
+ Enums.ArtKind oldValue = _Kind;
+ SetKind(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Kind = value;
+ }
+ }
+ }
- }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
+
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ }
}
diff --git a/Jellyfin.Data/Entities/Book.cs b/Jellyfin.Data/Entities/Book.cs
index 30c89ae5c..7dda26f41 100644
--- a/Jellyfin.Data/Entities/Book.cs
+++ b/Jellyfin.Data/Entities/Book.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,64 +9,67 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Book: global::Jellyfin.Data.Entities.LibraryItem
- {
- partial void Init();
+ [Table("Book")]
+ public partial class Book : LibraryItem
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Book(): base()
- {
- BookMetadata = new System.Collections.Generic.HashSet();
- Releases = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Book() : base()
+ {
+ BookMetadata = new HashSet();
+ Releases = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Book CreateBookUnsafe()
- {
- return new Book();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Book CreateBookUnsafe()
+ {
+ return new Book();
+ }
- ///
- /// Public constructor with required data
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- public Book(Guid urlid, DateTime dateadded)
- {
- this.UrlId = urlid;
+ ///
+ /// Public constructor with required data
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ public Book(Guid urlid, DateTime dateadded)
+ {
+ this.UrlId = urlid;
- this.BookMetadata = new System.Collections.Generic.HashSet();
- this.Releases = new System.Collections.Generic.HashSet();
+ this.BookMetadata = new HashSet();
+ this.Releases = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- public static Book Create(Guid urlid, DateTime dateadded)
- {
- return new Book(urlid, dateadded);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ public static Book Create(Guid urlid, DateTime dateadded)
+ {
+ return new Book(urlid, dateadded);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
- public virtual ICollection BookMetadata { get; protected set; }
+ [ForeignKey("BookMetadata_BookMetadata_Id")]
+ public virtual ICollection BookMetadata { get; protected set; }
- public virtual ICollection Releases { get; protected set; }
+ [ForeignKey("Release_Releases_Id")]
+ public virtual ICollection Releases { get; protected set; }
- }
+ }
}
diff --git a/Jellyfin.Data/Entities/BookMetadata.cs b/Jellyfin.Data/Entities/BookMetadata.cs
index 3a28244d6..8afd37163 100644
--- a/Jellyfin.Data/Entities/BookMetadata.cs
+++ b/Jellyfin.Data/Entities/BookMetadata.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,103 +9,104 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class BookMetadata: global::Jellyfin.Data.Entities.Metadata
- {
- partial void Init();
+ public partial class BookMetadata : Metadata
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected BookMetadata(): base()
- {
- Publishers = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected BookMetadata() : base()
+ {
+ Publishers = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static BookMetadata CreateBookMetadataUnsafe()
- {
- return new BookMetadata();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static BookMetadata CreateBookMetadataUnsafe()
+ {
+ return new BookMetadata();
+ }
- ///
- /// Public constructor with required data
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public BookMetadata(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.Book _book0)
- {
- if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
- this.Title = title;
+ ///
+ /// Public constructor with required data
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public BookMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Book _book0)
+ {
+ if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
+ this.Title = title;
- if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
- this.Language = language;
+ if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
+ this.Language = language;
- if (_book0 == null) throw new ArgumentNullException(nameof(_book0));
- _book0.BookMetadata.Add(this);
+ if (_book0 == null) throw new ArgumentNullException(nameof(_book0));
+ _book0.BookMetadata.Add(this);
- this.Publishers = new System.Collections.Generic.HashSet();
+ this.Publishers = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public static BookMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.Book _book0)
- {
- return new BookMetadata(title, language, dateadded, datemodified, _book0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public static BookMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Book _book0)
+ {
+ return new BookMetadata(title, language, dateadded, datemodified, _book0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for ISBN
- ///
- protected long? _ISBN;
- ///
- /// When provided in a partial class, allows value of ISBN to be changed before setting.
- ///
- partial void SetISBN(long? oldValue, ref long? newValue);
- ///
- /// When provided in a partial class, allows value of ISBN to be changed before returning.
- ///
- partial void GetISBN(ref long? result);
+ ///
+ /// Backing field for ISBN
+ ///
+ protected long? _ISBN;
+ ///
+ /// When provided in a partial class, allows value of ISBN to be changed before setting.
+ ///
+ partial void SetISBN(long? oldValue, ref long? newValue);
+ ///
+ /// When provided in a partial class, allows value of ISBN to be changed before returning.
+ ///
+ partial void GetISBN(ref long? result);
- public long? ISBN
- {
- get
- {
- long? value = _ISBN;
- GetISBN(ref value);
- return (_ISBN = value);
- }
- set
- {
- long? oldValue = _ISBN;
- SetISBN(oldValue, ref value);
- if (oldValue != value)
+ public long? ISBN
+ {
+ get
{
- _ISBN = value;
+ long? value = _ISBN;
+ GetISBN(ref value);
+ return (_ISBN = value);
}
- }
- }
+ set
+ {
+ long? oldValue = _ISBN;
+ SetISBN(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _ISBN = value;
+ }
+ }
+ }
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
- public virtual ICollection Publishers { get; protected set; }
+ [ForeignKey("Company_Publishers_Id")]
+ public virtual ICollection Publishers { get; protected set; }
- }
+ }
}
diff --git a/Jellyfin.Data/Entities/Chapter.cs b/Jellyfin.Data/Entities/Chapter.cs
index 21a5dd73e..1ee6a9c07 100644
--- a/Jellyfin.Data/Entities/Chapter.cs
+++ b/Jellyfin.Data/Entities/Chapter.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,254 +9,261 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Chapter
- {
- partial void Init();
+ [Table("Chapter")]
+ public partial class Chapter
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Chapter()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Chapter()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Chapter CreateChapterUnsafe()
- {
- return new Chapter();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Chapter CreateChapterUnsafe()
+ {
+ return new Chapter();
+ }
- ///
- /// Public constructor with required data
- ///
- /// ISO-639-3 3-character language codes
- ///
- ///
- public Chapter(string language, long timestart, global::Jellyfin.Data.Entities.Release _release0)
- {
- if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
- this.Language = language;
+ ///
+ /// Public constructor with required data
+ ///
+ /// ISO-639-3 3-character language codes
+ ///
+ ///
+ public Chapter(string language, long timestart, Release _release0)
+ {
+ if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
+ this.Language = language;
- this.TimeStart = timestart;
+ this.TimeStart = timestart;
- if (_release0 == null) throw new ArgumentNullException(nameof(_release0));
- _release0.Chapters.Add(this);
+ if (_release0 == null) throw new ArgumentNullException(nameof(_release0));
+ _release0.Chapters.Add(this);
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// ISO-639-3 3-character language codes
- ///
- ///
- public static Chapter Create(string language, long timestart, global::Jellyfin.Data.Entities.Release _release0)
- {
- return new Chapter(language, timestart, _release0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// ISO-639-3 3-character language codes
+ ///
+ ///
+ public static Chapter Create(string language, long timestart, Release _release0)
+ {
+ return new Chapter(language, timestart, _release0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Name
- ///
- protected string _Name;
- ///
- /// When provided in a partial class, allows value of Name to be changed before setting.
- ///
- partial void SetName(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Name to be changed before returning.
- ///
- partial void GetName(ref string result);
-
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Name
- {
- get
- {
- string value = _Name;
- GetName(ref value);
- return (_Name = value);
- }
- set
- {
- string oldValue = _Name;
- SetName(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Name = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for Language
- ///
- protected string _Language;
- ///
- /// When provided in a partial class, allows value of Language to be changed before setting.
- ///
- partial void SetLanguage(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Language to be changed before returning.
- ///
- partial void GetLanguage(ref string result);
+ ///
+ /// Backing field for Name
+ ///
+ protected string _Name;
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before setting.
+ ///
+ partial void SetName(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before returning.
+ ///
+ partial void GetName(ref string result);
- ///
- /// Required, Min length = 3, Max length = 3
- /// ISO-639-3 3-character language codes
- ///
- [Required]
- [MinLength(3)]
- [MaxLength(3)]
- [StringLength(3)]
- public string Language
- {
- get
- {
- string value = _Language;
- GetLanguage(ref value);
- return (_Language = value);
- }
- set
- {
- string oldValue = _Language;
- SetLanguage(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Name
+ {
+ get
{
- _Language = value;
+ string value = _Name;
+ GetName(ref value);
+ return (_Name = value);
}
- }
- }
-
- ///
- /// Backing field for TimeStart
- ///
- protected long _TimeStart;
- ///
- /// When provided in a partial class, allows value of TimeStart to be changed before setting.
- ///
- partial void SetTimeStart(long oldValue, ref long newValue);
- ///
- /// When provided in a partial class, allows value of TimeStart to be changed before returning.
- ///
- partial void GetTimeStart(ref long result);
-
- ///
- /// Required
- ///
- [Required]
- public long TimeStart
- {
- get
- {
- long value = _TimeStart;
- GetTimeStart(ref value);
- return (_TimeStart = value);
- }
- set
- {
- long oldValue = _TimeStart;
- SetTimeStart(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _TimeStart = value;
+ string oldValue = _Name;
+ SetName(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Name = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for TimeEnd
- ///
- protected long? _TimeEnd;
- ///
- /// When provided in a partial class, allows value of TimeEnd to be changed before setting.
- ///
- partial void SetTimeEnd(long? oldValue, ref long? newValue);
- ///
- /// When provided in a partial class, allows value of TimeEnd to be changed before returning.
- ///
- partial void GetTimeEnd(ref long? result);
+ ///
+ /// Backing field for Language
+ ///
+ protected string _Language;
+ ///
+ /// When provided in a partial class, allows value of Language to be changed before setting.
+ ///
+ partial void SetLanguage(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Language to be changed before returning.
+ ///
+ partial void GetLanguage(ref string result);
- public long? TimeEnd
- {
- get
- {
- long? value = _TimeEnd;
- GetTimeEnd(ref value);
- return (_TimeEnd = value);
- }
- set
- {
- long? oldValue = _TimeEnd;
- SetTimeEnd(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Required, Min length = 3, Max length = 3
+ /// ISO-639-3 3-character language codes
+ ///
+ [Required]
+ [MinLength(3)]
+ [MaxLength(3)]
+ [StringLength(3)]
+ public string Language
+ {
+ get
{
- _TimeEnd = value;
+ string value = _Language;
+ GetLanguage(ref value);
+ return (_Language = value);
}
- }
- }
+ set
+ {
+ string oldValue = _Language;
+ SetLanguage(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Language = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for TimeStart
+ ///
+ protected long _TimeStart;
+ ///
+ /// When provided in a partial class, allows value of TimeStart to be changed before setting.
+ ///
+ partial void SetTimeStart(long oldValue, ref long newValue);
+ ///
+ /// When provided in a partial class, allows value of TimeStart to be changed before returning.
+ ///
+ partial void GetTimeStart(ref long result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Required
+ ///
+ [Required]
+ public long TimeStart
+ {
+ get
+ {
+ long value = _TimeStart;
+ GetTimeStart(ref value);
+ return (_TimeStart = value);
+ }
+ set
+ {
+ long oldValue = _TimeStart;
+ SetTimeStart(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _TimeStart = value;
+ }
+ }
+ }
- }
+ ///
+ /// Backing field for TimeEnd
+ ///
+ protected long? _TimeEnd;
+ ///
+ /// When provided in a partial class, allows value of TimeEnd to be changed before setting.
+ ///
+ partial void SetTimeEnd(long? oldValue, ref long? newValue);
+ ///
+ /// When provided in a partial class, allows value of TimeEnd to be changed before returning.
+ ///
+ partial void GetTimeEnd(ref long? result);
+
+ public long? TimeEnd
+ {
+ get
+ {
+ long? value = _TimeEnd;
+ GetTimeEnd(ref value);
+ return (_TimeEnd = value);
+ }
+ set
+ {
+ long? oldValue = _TimeEnd;
+ SetTimeEnd(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _TimeEnd = value;
+ }
+ }
+ }
+
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
+
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ }
}
diff --git a/Jellyfin.Data/Entities/Collection.cs b/Jellyfin.Data/Entities/Collection.cs
index 68979eb2f..d3ccb13f5 100644
--- a/Jellyfin.Data/Entities/Collection.cs
+++ b/Jellyfin.Data/Entities/Collection.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,111 +9,118 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Collection
- {
- partial void Init();
+ [Table("Collection")]
+ public partial class Collection
+ {
+ partial void Init();
- ///
- /// Default constructor
- ///
- public Collection()
- {
- CollectionItem = new System.Collections.Generic.LinkedList();
+ ///
+ /// Default constructor
+ ///
+ public Collection()
+ {
+ CollectionItem = new LinkedList();
- Init();
- }
+ Init();
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Name
- ///
- protected string _Name;
- ///
- /// When provided in a partial class, allows value of Name to be changed before setting.
- ///
- partial void SetName(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Name to be changed before returning.
- ///
- partial void GetName(ref string result);
-
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Name
- {
- get
- {
- string value = _Name;
- GetName(ref value);
- return (_Name = value);
- }
- set
- {
- string oldValue = _Name;
- SetName(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Name = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for Name
+ ///
+ protected string _Name;
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before setting.
+ ///
+ partial void SetName(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before returning.
+ ///
+ partial void GetName(ref string result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Name
+ {
+ get
+ {
+ string value = _Name;
+ GetName(ref value);
+ return (_Name = value);
+ }
+ set
+ {
+ string oldValue = _Name;
+ SetName(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Name = value;
+ }
+ }
+ }
- public virtual ICollection CollectionItem { get; protected set; }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
- }
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+ [ForeignKey("CollectionItem_CollectionItem_Id")]
+ public virtual ICollection CollectionItem { get; protected set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/CollectionItem.cs b/Jellyfin.Data/Entities/CollectionItem.cs
index 8e575e0a2..f40158b20 100644
--- a/Jellyfin.Data/Entities/CollectionItem.cs
+++ b/Jellyfin.Data/Entities/CollectionItem.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,131 +9,141 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class CollectionItem
- {
- partial void Init();
+ [Table("CollectionItem")]
+ public partial class CollectionItem
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected CollectionItem()
- {
- // NOTE: This class has one-to-one associations with CollectionItem.
- // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected CollectionItem()
+ {
+ // NOTE: This class has one-to-one associations with CollectionItem.
+ // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static CollectionItem CreateCollectionItemUnsafe()
- {
- return new CollectionItem();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static CollectionItem CreateCollectionItemUnsafe()
+ {
+ return new CollectionItem();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- ///
- ///
- public CollectionItem(global::Jellyfin.Data.Entities.Collection _collection0, global::Jellyfin.Data.Entities.CollectionItem _collectionitem1, global::Jellyfin.Data.Entities.CollectionItem _collectionitem2)
- {
- // NOTE: This class has one-to-one associations with CollectionItem.
- // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ ///
+ ///
+ public CollectionItem(Collection _collection0, CollectionItem _collectionitem1, CollectionItem _collectionitem2)
+ {
+ // NOTE: This class has one-to-one associations with CollectionItem.
+ // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
- if (_collection0 == null) throw new ArgumentNullException(nameof(_collection0));
- _collection0.CollectionItem.Add(this);
+ if (_collection0 == null) throw new ArgumentNullException(nameof(_collection0));
+ _collection0.CollectionItem.Add(this);
- if (_collectionitem1 == null) throw new ArgumentNullException(nameof(_collectionitem1));
- _collectionitem1.Next = this;
+ if (_collectionitem1 == null) throw new ArgumentNullException(nameof(_collectionitem1));
+ _collectionitem1.Next = this;
- if (_collectionitem2 == null) throw new ArgumentNullException(nameof(_collectionitem2));
- _collectionitem2.Previous = this;
+ if (_collectionitem2 == null) throw new ArgumentNullException(nameof(_collectionitem2));
+ _collectionitem2.Previous = this;
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- ///
- ///
- public static CollectionItem Create(global::Jellyfin.Data.Entities.Collection _collection0, global::Jellyfin.Data.Entities.CollectionItem _collectionitem1, global::Jellyfin.Data.Entities.CollectionItem _collectionitem2)
- {
- return new CollectionItem(_collection0, _collectionitem1, _collectionitem2);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ ///
+ ///
+ public static CollectionItem Create(Collection _collection0, CollectionItem _collectionitem1, CollectionItem _collectionitem2)
+ {
+ return new CollectionItem(_collection0, _collectionitem1, _collectionitem2);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
+ protected set
+ {
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
- ///
- /// Required
- ///
- public virtual global::Jellyfin.Data.Entities.LibraryItem LibraryItem { get; set; }
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
- ///
- /// TODO check if this properly updated dependant and has the proper principal relationship
- ///
- public virtual global::Jellyfin.Data.Entities.CollectionItem Next { get; set; }
+ ///
+ /// Required
+ ///
+ [ForeignKey("LibraryItem_Id")]
+ public virtual LibraryItem LibraryItem { get; set; }
- ///
- /// TODO check if this properly updated dependant and has the proper principal relationship
- ///
- public virtual global::Jellyfin.Data.Entities.CollectionItem Previous { get; set; }
+ ///
+ /// TODO check if this properly updated dependant and has the proper principal relationship
+ ///
+ [ForeignKey("CollectionItem_Next_Id")]
+ public virtual CollectionItem Next { get; set; }
- }
+ ///
+ /// TODO check if this properly updated dependant and has the proper principal relationship
+ ///
+ [ForeignKey("CollectionItem_Previous_Id")]
+ public virtual CollectionItem Previous { get; set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/Company.cs b/Jellyfin.Data/Entities/Company.cs
index 444ae9c56..5b8a21423 100644
--- a/Jellyfin.Data/Entities/Company.cs
+++ b/Jellyfin.Data/Entities/Company.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,127 +9,134 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Company
- {
- partial void Init();
+ [Table("Company")]
+ public partial class Company
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Company()
- {
- CompanyMetadata = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Company()
+ {
+ CompanyMetadata = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Company CreateCompanyUnsafe()
- {
- return new Company();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Company CreateCompanyUnsafe()
+ {
+ return new Company();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- ///
- ///
- ///
- ///
- public Company(global::Jellyfin.Data.Entities.MovieMetadata _moviemetadata0, global::Jellyfin.Data.Entities.SeriesMetadata _seriesmetadata1, global::Jellyfin.Data.Entities.MusicAlbumMetadata _musicalbummetadata2, global::Jellyfin.Data.Entities.BookMetadata _bookmetadata3, global::Jellyfin.Data.Entities.Company _company4)
- {
- if (_moviemetadata0 == null) throw new ArgumentNullException(nameof(_moviemetadata0));
- _moviemetadata0.Studios.Add(this);
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public Company(MovieMetadata _moviemetadata0, SeriesMetadata _seriesmetadata1, MusicAlbumMetadata _musicalbummetadata2, BookMetadata _bookmetadata3, Company _company4)
+ {
+ if (_moviemetadata0 == null) throw new ArgumentNullException(nameof(_moviemetadata0));
+ _moviemetadata0.Studios.Add(this);
- if (_seriesmetadata1 == null) throw new ArgumentNullException(nameof(_seriesmetadata1));
- _seriesmetadata1.Networks.Add(this);
+ if (_seriesmetadata1 == null) throw new ArgumentNullException(nameof(_seriesmetadata1));
+ _seriesmetadata1.Networks.Add(this);
- if (_musicalbummetadata2 == null) throw new ArgumentNullException(nameof(_musicalbummetadata2));
- _musicalbummetadata2.Labels.Add(this);
+ if (_musicalbummetadata2 == null) throw new ArgumentNullException(nameof(_musicalbummetadata2));
+ _musicalbummetadata2.Labels.Add(this);
- if (_bookmetadata3 == null) throw new ArgumentNullException(nameof(_bookmetadata3));
- _bookmetadata3.Publishers.Add(this);
+ if (_bookmetadata3 == null) throw new ArgumentNullException(nameof(_bookmetadata3));
+ _bookmetadata3.Publishers.Add(this);
- if (_company4 == null) throw new ArgumentNullException(nameof(_company4));
- _company4.Parent = this;
+ if (_company4 == null) throw new ArgumentNullException(nameof(_company4));
+ _company4.Parent = this;
- this.CompanyMetadata = new System.Collections.Generic.HashSet();
+ this.CompanyMetadata = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- ///
- ///
- ///
- ///
- public static Company Create(global::Jellyfin.Data.Entities.MovieMetadata _moviemetadata0, global::Jellyfin.Data.Entities.SeriesMetadata _seriesmetadata1, global::Jellyfin.Data.Entities.MusicAlbumMetadata _musicalbummetadata2, global::Jellyfin.Data.Entities.BookMetadata _bookmetadata3, global::Jellyfin.Data.Entities.Company _company4)
- {
- return new Company(_moviemetadata0, _seriesmetadata1, _musicalbummetadata2, _bookmetadata3, _company4);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static Company Create(MovieMetadata _moviemetadata0, SeriesMetadata _seriesmetadata1, MusicAlbumMetadata _musicalbummetadata2, BookMetadata _bookmetadata3, Company _company4)
+ {
+ return new Company(_moviemetadata0, _seriesmetadata1, _musicalbummetadata2, _bookmetadata3, _company4);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
+ protected set
+ {
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
- public virtual ICollection CompanyMetadata { get; protected set; }
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+ [ForeignKey("CompanyMetadata_CompanyMetadata_Id")]
+ public virtual ICollection CompanyMetadata { get; protected set; }
+ [ForeignKey("Company_Parent_Id")]
+ public virtual Company Parent { get; set; }
- public virtual global::Jellyfin.Data.Entities.Company Parent { get; set; }
-
- }
+ }
}
diff --git a/Jellyfin.Data/Entities/CompanyMetadata.cs b/Jellyfin.Data/Entities/CompanyMetadata.cs
index 6d636e884..18357b326 100644
--- a/Jellyfin.Data/Entities/CompanyMetadata.cs
+++ b/Jellyfin.Data/Entities/CompanyMetadata.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,214 +9,215 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class CompanyMetadata: global::Jellyfin.Data.Entities.Metadata
- {
- partial void Init();
+ [Table("CompanyMetadata")]
+ public partial class CompanyMetadata : Metadata
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected CompanyMetadata(): base()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected CompanyMetadata() : base()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static CompanyMetadata CreateCompanyMetadataUnsafe()
- {
- return new CompanyMetadata();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static CompanyMetadata CreateCompanyMetadataUnsafe()
+ {
+ return new CompanyMetadata();
+ }
- ///
- /// Public constructor with required data
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public CompanyMetadata(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.Company _company0)
- {
- if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
- this.Title = title;
+ ///
+ /// Public constructor with required data
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public CompanyMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0)
+ {
+ if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
+ this.Title = title;
- if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
- this.Language = language;
+ if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
+ this.Language = language;
- if (_company0 == null) throw new ArgumentNullException(nameof(_company0));
- _company0.CompanyMetadata.Add(this);
+ if (_company0 == null) throw new ArgumentNullException(nameof(_company0));
+ _company0.CompanyMetadata.Add(this);
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public static CompanyMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.Company _company0)
- {
- return new CompanyMetadata(title, language, dateadded, datemodified, _company0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public static CompanyMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0)
+ {
+ return new CompanyMetadata(title, language, dateadded, datemodified, _company0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Description
- ///
- protected string _Description;
- ///
- /// When provided in a partial class, allows value of Description to be changed before setting.
- ///
- partial void SetDescription(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Description to be changed before returning.
- ///
- partial void GetDescription(ref string result);
+ ///
+ /// Backing field for Description
+ ///
+ protected string _Description;
+ ///
+ /// When provided in a partial class, allows value of Description to be changed before setting.
+ ///
+ partial void SetDescription(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Description to be changed before returning.
+ ///
+ partial void GetDescription(ref string result);
- ///
- /// Max length = 65535
- ///
- [MaxLength(65535)]
- [StringLength(65535)]
- public string Description
- {
- get
- {
- string value = _Description;
- GetDescription(ref value);
- return (_Description = value);
- }
- set
- {
- string oldValue = _Description;
- SetDescription(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 65535
+ ///
+ [MaxLength(65535)]
+ [StringLength(65535)]
+ public string Description
+ {
+ get
{
- _Description = value;
+ string value = _Description;
+ GetDescription(ref value);
+ return (_Description = value);
}
- }
- }
-
- ///
- /// Backing field for Headquarters
- ///
- protected string _Headquarters;
- ///
- /// When provided in a partial class, allows value of Headquarters to be changed before setting.
- ///
- partial void SetHeadquarters(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Headquarters to be changed before returning.
- ///
- partial void GetHeadquarters(ref string result);
-
- ///
- /// Max length = 255
- ///
- [MaxLength(255)]
- [StringLength(255)]
- public string Headquarters
- {
- get
- {
- string value = _Headquarters;
- GetHeadquarters(ref value);
- return (_Headquarters = value);
- }
- set
- {
- string oldValue = _Headquarters;
- SetHeadquarters(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _Headquarters = value;
+ string oldValue = _Description;
+ SetDescription(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Description = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for Country
- ///
- protected string _Country;
- ///
- /// When provided in a partial class, allows value of Country to be changed before setting.
- ///
- partial void SetCountry(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Country to be changed before returning.
- ///
- partial void GetCountry(ref string result);
+ ///
+ /// Backing field for Headquarters
+ ///
+ protected string _Headquarters;
+ ///
+ /// When provided in a partial class, allows value of Headquarters to be changed before setting.
+ ///
+ partial void SetHeadquarters(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Headquarters to be changed before returning.
+ ///
+ partial void GetHeadquarters(ref string result);
- ///
- /// Max length = 2
- ///
- [MaxLength(2)]
- [StringLength(2)]
- public string Country
- {
- get
- {
- string value = _Country;
- GetCountry(ref value);
- return (_Country = value);
- }
- set
- {
- string oldValue = _Country;
- SetCountry(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 255
+ ///
+ [MaxLength(255)]
+ [StringLength(255)]
+ public string Headquarters
+ {
+ get
{
- _Country = value;
+ string value = _Headquarters;
+ GetHeadquarters(ref value);
+ return (_Headquarters = value);
}
- }
- }
-
- ///
- /// Backing field for Homepage
- ///
- protected string _Homepage;
- ///
- /// When provided in a partial class, allows value of Homepage to be changed before setting.
- ///
- partial void SetHomepage(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Homepage to be changed before returning.
- ///
- partial void GetHomepage(ref string result);
-
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Homepage
- {
- get
- {
- string value = _Homepage;
- GetHomepage(ref value);
- return (_Homepage = value);
- }
- set
- {
- string oldValue = _Homepage;
- SetHomepage(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _Homepage = value;
+ string oldValue = _Headquarters;
+ SetHeadquarters(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Headquarters = value;
+ }
}
- }
- }
+ }
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Backing field for Country
+ ///
+ protected string _Country;
+ ///
+ /// When provided in a partial class, allows value of Country to be changed before setting.
+ ///
+ partial void SetCountry(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Country to be changed before returning.
+ ///
+ partial void GetCountry(ref string result);
- }
+ ///
+ /// Max length = 2
+ ///
+ [MaxLength(2)]
+ [StringLength(2)]
+ public string Country
+ {
+ get
+ {
+ string value = _Country;
+ GetCountry(ref value);
+ return (_Country = value);
+ }
+ set
+ {
+ string oldValue = _Country;
+ SetCountry(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Country = value;
+ }
+ }
+ }
+
+ ///
+ /// Backing field for Homepage
+ ///
+ protected string _Homepage;
+ ///
+ /// When provided in a partial class, allows value of Homepage to be changed before setting.
+ ///
+ partial void SetHomepage(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Homepage to be changed before returning.
+ ///
+ partial void GetHomepage(ref string result);
+
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Homepage
+ {
+ get
+ {
+ string value = _Homepage;
+ GetHomepage(ref value);
+ return (_Homepage = value);
+ }
+ set
+ {
+ string oldValue = _Homepage;
+ SetHomepage(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Homepage = value;
+ }
+ }
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ }
}
diff --git a/Jellyfin.Data/Entities/CustomItem.cs b/Jellyfin.Data/Entities/CustomItem.cs
index eb6d2752d..29f4b62a6 100644
--- a/Jellyfin.Data/Entities/CustomItem.cs
+++ b/Jellyfin.Data/Entities/CustomItem.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,64 +9,65 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class CustomItem: global::Jellyfin.Data.Entities.LibraryItem
- {
- partial void Init();
+ public partial class CustomItem : LibraryItem
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected CustomItem(): base()
- {
- CustomItemMetadata = new System.Collections.Generic.HashSet();
- Releases = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected CustomItem() : base()
+ {
+ CustomItemMetadata = new HashSet();
+ Releases = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static CustomItem CreateCustomItemUnsafe()
- {
- return new CustomItem();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static CustomItem CreateCustomItemUnsafe()
+ {
+ return new CustomItem();
+ }
- ///
- /// Public constructor with required data
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- public CustomItem(Guid urlid, DateTime dateadded)
- {
- this.UrlId = urlid;
+ ///
+ /// Public constructor with required data
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ public CustomItem(Guid urlid, DateTime dateadded)
+ {
+ this.UrlId = urlid;
- this.CustomItemMetadata = new System.Collections.Generic.HashSet();
- this.Releases = new System.Collections.Generic.HashSet();
+ this.CustomItemMetadata = new HashSet();
+ this.Releases = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- public static CustomItem Create(Guid urlid, DateTime dateadded)
- {
- return new CustomItem(urlid, dateadded);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ public static CustomItem Create(Guid urlid, DateTime dateadded)
+ {
+ return new CustomItem(urlid, dateadded);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+ [ForeignKey("CustomItemMetadata_CustomItemMetadata_Id")]
+ public virtual ICollection CustomItemMetadata { get; protected set; }
- public virtual ICollection CustomItemMetadata { get; protected set; }
+ [ForeignKey("Release_Releases_Id")]
+ public virtual ICollection Releases { get; protected set; }
- public virtual ICollection Releases { get; protected set; }
-
- }
+ }
}
diff --git a/Jellyfin.Data/Entities/CustomItemMetadata.cs b/Jellyfin.Data/Entities/CustomItemMetadata.cs
index f2c15d3fe..8fbccfdd8 100644
--- a/Jellyfin.Data/Entities/CustomItemMetadata.cs
+++ b/Jellyfin.Data/Entities/CustomItemMetadata.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,66 +9,67 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class CustomItemMetadata: global::Jellyfin.Data.Entities.Metadata
- {
- partial void Init();
+ [Table("CustomItemMetadata")]
+ public partial class CustomItemMetadata : Metadata
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected CustomItemMetadata(): base()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected CustomItemMetadata() : base()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static CustomItemMetadata CreateCustomItemMetadataUnsafe()
- {
- return new CustomItemMetadata();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static CustomItemMetadata CreateCustomItemMetadataUnsafe()
+ {
+ return new CustomItemMetadata();
+ }
- ///
- /// Public constructor with required data
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public CustomItemMetadata(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.CustomItem _customitem0)
- {
- if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
- this.Title = title;
+ ///
+ /// Public constructor with required data
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public CustomItemMetadata(string title, string language, DateTime dateadded, DateTime datemodified, CustomItem _customitem0)
+ {
+ if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
+ this.Title = title;
- if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
- this.Language = language;
+ if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
+ this.Language = language;
- if (_customitem0 == null) throw new ArgumentNullException(nameof(_customitem0));
- _customitem0.CustomItemMetadata.Add(this);
+ if (_customitem0 == null) throw new ArgumentNullException(nameof(_customitem0));
+ _customitem0.CustomItemMetadata.Add(this);
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public static CustomItemMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.CustomItem _customitem0)
- {
- return new CustomItemMetadata(title, language, dateadded, datemodified, _customitem0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public static CustomItemMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, CustomItem _customitem0)
+ {
+ return new CustomItemMetadata(title, language, dateadded, datemodified, _customitem0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
- }
+ }
}
diff --git a/Jellyfin.Data/Entities/Episode.cs b/Jellyfin.Data/Entities/Episode.cs
index 3a23f0976..be358a0fd 100644
--- a/Jellyfin.Data/Entities/Episode.cs
+++ b/Jellyfin.Data/Entities/Episode.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,107 +9,108 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Episode: global::Jellyfin.Data.Entities.LibraryItem
- {
- partial void Init();
+ [Table("Episode")]
+ public partial class Episode : LibraryItem
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Episode(): base()
- {
- // NOTE: This class has one-to-one associations with LibraryRoot, LibraryItem and CollectionItem.
- // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Episode() : base()
+ {
+ // NOTE: This class has one-to-one associations with LibraryRoot, LibraryItem and CollectionItem.
+ // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
- Releases = new System.Collections.Generic.HashSet();
- EpisodeMetadata = new System.Collections.Generic.HashSet();
+ Releases = new HashSet();
+ EpisodeMetadata = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Episode CreateEpisodeUnsafe()
- {
- return new Episode();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Episode CreateEpisodeUnsafe()
+ {
+ return new Episode();
+ }
- ///
- /// Public constructor with required data
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- ///
- public Episode(Guid urlid, DateTime dateadded, global::Jellyfin.Data.Entities.Season _season0)
- {
- // NOTE: This class has one-to-one associations with LibraryRoot, LibraryItem and CollectionItem.
- // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
+ ///
+ /// Public constructor with required data
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ ///
+ public Episode(Guid urlid, DateTime dateadded, Season _season0)
+ {
+ // NOTE: This class has one-to-one associations with LibraryRoot, LibraryItem and CollectionItem.
+ // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
- this.UrlId = urlid;
+ this.UrlId = urlid;
- if (_season0 == null) throw new ArgumentNullException(nameof(_season0));
- _season0.Episodes.Add(this);
+ if (_season0 == null) throw new ArgumentNullException(nameof(_season0));
+ _season0.Episodes.Add(this);
- this.Releases = new System.Collections.Generic.HashSet();
- this.EpisodeMetadata = new System.Collections.Generic.HashSet();
+ this.Releases = new HashSet();
+ this.EpisodeMetadata = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- ///
- public static Episode Create(Guid urlid, DateTime dateadded, global::Jellyfin.Data.Entities.Season _season0)
- {
- return new Episode(urlid, dateadded, _season0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ ///
+ public static Episode Create(Guid urlid, DateTime dateadded, Season _season0)
+ {
+ return new Episode(urlid, dateadded, _season0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for EpisodeNumber
- ///
- protected int? _EpisodeNumber;
- ///
- /// When provided in a partial class, allows value of EpisodeNumber to be changed before setting.
- ///
- partial void SetEpisodeNumber(int? oldValue, ref int? newValue);
- ///
- /// When provided in a partial class, allows value of EpisodeNumber to be changed before returning.
- ///
- partial void GetEpisodeNumber(ref int? result);
+ ///
+ /// Backing field for EpisodeNumber
+ ///
+ protected int? _EpisodeNumber;
+ ///
+ /// When provided in a partial class, allows value of EpisodeNumber to be changed before setting.
+ ///
+ partial void SetEpisodeNumber(int? oldValue, ref int? newValue);
+ ///
+ /// When provided in a partial class, allows value of EpisodeNumber to be changed before returning.
+ ///
+ partial void GetEpisodeNumber(ref int? result);
- public int? EpisodeNumber
- {
- get
- {
- int? value = _EpisodeNumber;
- GetEpisodeNumber(ref value);
- return (_EpisodeNumber = value);
- }
- set
- {
- int? oldValue = _EpisodeNumber;
- SetEpisodeNumber(oldValue, ref value);
- if (oldValue != value)
+ public int? EpisodeNumber
+ {
+ get
{
- _EpisodeNumber = value;
+ int? value = _EpisodeNumber;
+ GetEpisodeNumber(ref value);
+ return (_EpisodeNumber = value);
}
- }
- }
+ set
+ {
+ int? oldValue = _EpisodeNumber;
+ SetEpisodeNumber(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _EpisodeNumber = value;
+ }
+ }
+ }
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+ [ForeignKey("Release_Releases_Id")]
+ public virtual ICollection Releases { get; protected set; }
+ [ForeignKey("EpisodeMetadata_EpisodeMetadata_Id")]
+ public virtual ICollection EpisodeMetadata { get; protected set; }
- public virtual ICollection Releases { get; protected set; }
-
- public virtual ICollection EpisodeMetadata { get; protected set; }
-
- }
+ }
}
diff --git a/Jellyfin.Data/Entities/EpisodeMetadata.cs b/Jellyfin.Data/Entities/EpisodeMetadata.cs
index 963219140..a1f4adf7b 100644
--- a/Jellyfin.Data/Entities/EpisodeMetadata.cs
+++ b/Jellyfin.Data/Entities/EpisodeMetadata.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,177 +9,178 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class EpisodeMetadata: global::Jellyfin.Data.Entities.Metadata
- {
- partial void Init();
+ [Table("EpisodeMetadata")]
+ public partial class EpisodeMetadata : Metadata
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected EpisodeMetadata(): base()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected EpisodeMetadata() : base()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static EpisodeMetadata CreateEpisodeMetadataUnsafe()
- {
- return new EpisodeMetadata();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static EpisodeMetadata CreateEpisodeMetadataUnsafe()
+ {
+ return new EpisodeMetadata();
+ }
- ///
- /// Public constructor with required data
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public EpisodeMetadata(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.Episode _episode0)
- {
- if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
- this.Title = title;
+ ///
+ /// Public constructor with required data
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public EpisodeMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Episode _episode0)
+ {
+ if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
+ this.Title = title;
- if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
- this.Language = language;
+ if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
+ this.Language = language;
- if (_episode0 == null) throw new ArgumentNullException(nameof(_episode0));
- _episode0.EpisodeMetadata.Add(this);
+ if (_episode0 == null) throw new ArgumentNullException(nameof(_episode0));
+ _episode0.EpisodeMetadata.Add(this);
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public static EpisodeMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.Episode _episode0)
- {
- return new EpisodeMetadata(title, language, dateadded, datemodified, _episode0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public static EpisodeMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Episode _episode0)
+ {
+ return new EpisodeMetadata(title, language, dateadded, datemodified, _episode0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Outline
- ///
- protected string _Outline;
- ///
- /// When provided in a partial class, allows value of Outline to be changed before setting.
- ///
- partial void SetOutline(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Outline to be changed before returning.
- ///
- partial void GetOutline(ref string result);
+ ///
+ /// Backing field for Outline
+ ///
+ protected string _Outline;
+ ///
+ /// When provided in a partial class, allows value of Outline to be changed before setting.
+ ///
+ partial void SetOutline(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Outline to be changed before returning.
+ ///
+ partial void GetOutline(ref string result);
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Outline
- {
- get
- {
- string value = _Outline;
- GetOutline(ref value);
- return (_Outline = value);
- }
- set
- {
- string oldValue = _Outline;
- SetOutline(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Outline
+ {
+ get
{
- _Outline = value;
+ string value = _Outline;
+ GetOutline(ref value);
+ return (_Outline = value);
}
- }
- }
-
- ///
- /// Backing field for Plot
- ///
- protected string _Plot;
- ///
- /// When provided in a partial class, allows value of Plot to be changed before setting.
- ///
- partial void SetPlot(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Plot to be changed before returning.
- ///
- partial void GetPlot(ref string result);
-
- ///
- /// Max length = 65535
- ///
- [MaxLength(65535)]
- [StringLength(65535)]
- public string Plot
- {
- get
- {
- string value = _Plot;
- GetPlot(ref value);
- return (_Plot = value);
- }
- set
- {
- string oldValue = _Plot;
- SetPlot(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _Plot = value;
+ string oldValue = _Outline;
+ SetOutline(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Outline = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for Tagline
- ///
- protected string _Tagline;
- ///
- /// When provided in a partial class, allows value of Tagline to be changed before setting.
- ///
- partial void SetTagline(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Tagline to be changed before returning.
- ///
- partial void GetTagline(ref string result);
+ ///
+ /// Backing field for Plot
+ ///
+ protected string _Plot;
+ ///
+ /// When provided in a partial class, allows value of Plot to be changed before setting.
+ ///
+ partial void SetPlot(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Plot to be changed before returning.
+ ///
+ partial void GetPlot(ref string result);
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Tagline
- {
- get
- {
- string value = _Tagline;
- GetTagline(ref value);
- return (_Tagline = value);
- }
- set
- {
- string oldValue = _Tagline;
- SetTagline(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 65535
+ ///
+ [MaxLength(65535)]
+ [StringLength(65535)]
+ public string Plot
+ {
+ get
{
- _Tagline = value;
+ string value = _Plot;
+ GetPlot(ref value);
+ return (_Plot = value);
}
- }
- }
+ set
+ {
+ string oldValue = _Plot;
+ SetPlot(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Plot = value;
+ }
+ }
+ }
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Backing field for Tagline
+ ///
+ protected string _Tagline;
+ ///
+ /// When provided in a partial class, allows value of Tagline to be changed before setting.
+ ///
+ partial void SetTagline(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Tagline to be changed before returning.
+ ///
+ partial void GetTagline(ref string result);
- }
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Tagline
+ {
+ get
+ {
+ string value = _Tagline;
+ GetTagline(ref value);
+ return (_Tagline = value);
+ }
+ set
+ {
+ string oldValue = _Tagline;
+ SetTagline(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Tagline = value;
+ }
+ }
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ }
}
diff --git a/Jellyfin.Data/Entities/Genre.cs b/Jellyfin.Data/Entities/Genre.cs
index 982600553..d38265d80 100644
--- a/Jellyfin.Data/Entities/Genre.cs
+++ b/Jellyfin.Data/Entities/Genre.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,143 +9,150 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Genre
- {
- partial void Init();
+ [Table("Genre")]
+ public partial class Genre
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Genre()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Genre()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Genre CreateGenreUnsafe()
- {
- return new Genre();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Genre CreateGenreUnsafe()
+ {
+ return new Genre();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- ///
- public Genre(string name, global::Jellyfin.Data.Entities.Metadata _metadata0)
- {
- if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
- this.Name = name;
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ ///
+ public Genre(string name, Metadata _metadata0)
+ {
+ if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
+ this.Name = name;
- if (_metadata0 == null) throw new ArgumentNullException(nameof(_metadata0));
- _metadata0.Genres.Add(this);
+ if (_metadata0 == null) throw new ArgumentNullException(nameof(_metadata0));
+ _metadata0.Genres.Add(this);
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- ///
- public static Genre Create(string name, global::Jellyfin.Data.Entities.Metadata _metadata0)
- {
- return new Genre(name, _metadata0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ ///
+ public static Genre Create(string name, Metadata _metadata0)
+ {
+ return new Genre(name, _metadata0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Name
- ///
- internal string _Name;
- ///
- /// When provided in a partial class, allows value of Name to be changed before setting.
- ///
- partial void SetName(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Name to be changed before returning.
- ///
- partial void GetName(ref string result);
-
- ///
- /// Indexed, Required, Max length = 255
- ///
- [Required]
- [MaxLength(255)]
- [StringLength(255)]
- public string Name
- {
- get
- {
- string value = _Name;
- GetName(ref value);
- return (_Name = value);
- }
- set
- {
- string oldValue = _Name;
- SetName(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Name = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for Name
+ ///
+ internal string _Name;
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before setting.
+ ///
+ partial void SetName(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before returning.
+ ///
+ partial void GetName(ref string result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Indexed, Required, Max length = 255
+ ///
+ [Required]
+ [MaxLength(255)]
+ [StringLength(255)]
+ public string Name
+ {
+ get
+ {
+ string value = _Name;
+ GetName(ref value);
+ return (_Name = value);
+ }
+ set
+ {
+ string oldValue = _Name;
+ SetName(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Name = value;
+ }
+ }
+ }
- }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
+
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ }
}
diff --git a/Jellyfin.Data/Entities/Group.cs b/Jellyfin.Data/Entities/Group.cs
index ff19e9b01..4b58120fc 100644
--- a/Jellyfin.Data/Entities/Group.cs
+++ b/Jellyfin.Data/Entities/Group.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,95 +9,106 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Group
- {
- partial void Init();
+ [Table("Group")]
+ public partial class Group
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Group()
- {
- GroupPermissions = new System.Collections.Generic.HashSet();
- ProviderMappings = new System.Collections.Generic.HashSet();
- Preferences = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Group()
+ {
+ GroupPermissions = new HashSet();
+ ProviderMappings = new HashSet();
+ Preferences = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Group CreateGroupUnsafe()
- {
- return new Group();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Group CreateGroupUnsafe()
+ {
+ return new Group();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- ///
- public Group(string name, global::Jellyfin.Data.Entities.User _user0)
- {
- if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
- this.Name = name;
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ ///
+ public Group(string name, User _user0)
+ {
+ if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
+ this.Name = name;
- if (_user0 == null) throw new ArgumentNullException(nameof(_user0));
- _user0.Groups.Add(this);
+ if (_user0 == null) throw new ArgumentNullException(nameof(_user0));
+ _user0.Groups.Add(this);
- this.GroupPermissions = new System.Collections.Generic.HashSet();
- this.ProviderMappings = new System.Collections.Generic.HashSet();
- this.Preferences = new System.Collections.Generic.HashSet();
+ this.GroupPermissions = new HashSet();
+ this.ProviderMappings = new HashSet();
+ this.Preferences = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- ///
- public static Group Create(string name, global::Jellyfin.Data.Entities.User _user0)
- {
- return new Group(name, _user0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ ///
+ public static Group Create(string name, User _user0)
+ {
+ return new Group(name, _user0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id { get; protected set; }
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id { get; protected set; }
- ///
- /// Required, Max length = 255
- ///
- [Required]
- [MaxLength(255)]
- [StringLength(255)]
- public string Name { get; set; }
+ ///
+ /// Required, Max length = 255
+ ///
+ [Required]
+ [MaxLength(255)]
+ [StringLength(255)]
+ public string Name { get; set; }
- ///
- /// Concurrency token
- ///
- [Timestamp]
- public Byte[] Timestamp { get; set; }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
- public virtual ICollection GroupPermissions { get; protected set; }
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
- public virtual ICollection ProviderMappings { get; protected set; }
+ [ForeignKey("Permission_GroupPermissions_Id")]
+ public virtual ICollection GroupPermissions { get; protected set; }
- public virtual ICollection Preferences { get; protected set; }
+ [ForeignKey("ProviderMapping_ProviderMappings_Id")]
+ public virtual ICollection ProviderMappings { get; protected set; }
- }
+ [ForeignKey("Preference_Preferences_Id")]
+ public virtual ICollection Preferences { get; protected set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/Library.cs b/Jellyfin.Data/Entities/Library.cs
index 19ca14294..f3faa8699 100644
--- a/Jellyfin.Data/Entities/Library.cs
+++ b/Jellyfin.Data/Entities/Library.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,138 +9,145 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Library
- {
- partial void Init();
+ [Table("Library")]
+ public partial class Library
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Library()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Library()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Library CreateLibraryUnsafe()
- {
- return new Library();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Library CreateLibraryUnsafe()
+ {
+ return new Library();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- public Library(string name)
- {
- if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
- this.Name = name;
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ public Library(string name)
+ {
+ if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
+ this.Name = name;
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- public static Library Create(string name)
- {
- return new Library(name);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ public static Library Create(string name)
+ {
+ return new Library(name);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Name
- ///
- protected string _Name;
- ///
- /// When provided in a partial class, allows value of Name to be changed before setting.
- ///
- partial void SetName(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Name to be changed before returning.
- ///
- partial void GetName(ref string result);
-
- ///
- /// Required, Max length = 1024
- ///
- [Required]
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Name
- {
- get
- {
- string value = _Name;
- GetName(ref value);
- return (_Name = value);
- }
- set
- {
- string oldValue = _Name;
- SetName(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Name = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for Name
+ ///
+ protected string _Name;
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before setting.
+ ///
+ partial void SetName(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before returning.
+ ///
+ partial void GetName(ref string result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Required, Max length = 1024
+ ///
+ [Required]
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Name
+ {
+ get
+ {
+ string value = _Name;
+ GetName(ref value);
+ return (_Name = value);
+ }
+ set
+ {
+ string oldValue = _Name;
+ SetName(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Name = value;
+ }
+ }
+ }
- }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
+
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ }
}
diff --git a/Jellyfin.Data/Entities/LibraryItem.cs b/Jellyfin.Data/Entities/LibraryItem.cs
index 1987196d6..29547562b 100644
--- a/Jellyfin.Data/Entities/LibraryItem.cs
+++ b/Jellyfin.Data/Entities/LibraryItem.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,160 +9,168 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public abstract partial class LibraryItem
- {
- partial void Init();
+ [Table("LibraryItem")]
+ public abstract partial class LibraryItem
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to being abstract.
- ///
- protected LibraryItem()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to being abstract.
+ ///
+ protected LibraryItem()
+ {
+ Init();
+ }
- ///
- /// Public constructor with required data
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- protected LibraryItem(Guid urlid, DateTime dateadded)
- {
- this.UrlId = urlid;
+ ///
+ /// Public constructor with required data
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ protected LibraryItem(Guid urlid, DateTime dateadded)
+ {
+ this.UrlId = urlid;
- Init();
- }
+ Init();
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for UrlId
- ///
- internal Guid _UrlId;
- ///
- /// When provided in a partial class, allows value of UrlId to be changed before setting.
- ///
- partial void SetUrlId(Guid oldValue, ref Guid newValue);
- ///
- /// When provided in a partial class, allows value of UrlId to be changed before returning.
- ///
- partial void GetUrlId(ref Guid result);
-
- ///
- /// Indexed, Required
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- ///
- [Required]
- public Guid UrlId
- {
- get
- {
- Guid value = _UrlId;
- GetUrlId(ref value);
- return (_UrlId = value);
- }
- set
- {
- Guid oldValue = _UrlId;
- SetUrlId(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _UrlId = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for DateAdded
- ///
- protected DateTime _DateAdded;
- ///
- /// When provided in a partial class, allows value of DateAdded to be changed before setting.
- ///
- partial void SetDateAdded(DateTime oldValue, ref DateTime newValue);
- ///
- /// When provided in a partial class, allows value of DateAdded to be changed before returning.
- ///
- partial void GetDateAdded(ref DateTime result);
+ ///
+ /// Backing field for UrlId
+ ///
+ internal Guid _UrlId;
+ ///
+ /// When provided in a partial class, allows value of UrlId to be changed before setting.
+ ///
+ partial void SetUrlId(Guid oldValue, ref Guid newValue);
+ ///
+ /// When provided in a partial class, allows value of UrlId to be changed before returning.
+ ///
+ partial void GetUrlId(ref Guid result);
- ///
- /// Required
- ///
- [Required]
- public DateTime DateAdded
- {
- get
- {
- DateTime value = _DateAdded;
- GetDateAdded(ref value);
- return (_DateAdded = value);
- }
- internal set
- {
- DateTime oldValue = _DateAdded;
- SetDateAdded(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Indexed, Required
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ ///
+ [Required]
+ public Guid UrlId
+ {
+ get
{
- _DateAdded = value;
+ Guid value = _UrlId;
+ GetUrlId(ref value);
+ return (_UrlId = value);
}
- }
- }
+ set
+ {
+ Guid oldValue = _UrlId;
+ SetUrlId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _UrlId = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for DateAdded
+ ///
+ protected DateTime _DateAdded;
+ ///
+ /// When provided in a partial class, allows value of DateAdded to be changed before setting.
+ ///
+ partial void SetDateAdded(DateTime oldValue, ref DateTime newValue);
+ ///
+ /// When provided in a partial class, allows value of DateAdded to be changed before returning.
+ ///
+ partial void GetDateAdded(ref DateTime result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Required
+ ///
+ [Required]
+ public DateTime DateAdded
+ {
+ get
+ {
+ DateTime value = _DateAdded;
+ GetDateAdded(ref value);
+ return (_DateAdded = value);
+ }
+ internal set
+ {
+ DateTime oldValue = _DateAdded;
+ SetDateAdded(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _DateAdded = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- public virtual global::Jellyfin.Data.Entities.LibraryRoot LibraryRoot { get; set; }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
- }
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ ///
+ /// Required
+ ///
+ [ForeignKey("LibraryRoot_Id")]
+ public virtual LibraryRoot LibraryRoot { get; set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/LibraryRoot.cs b/Jellyfin.Data/Entities/LibraryRoot.cs
index 015fc4ea9..932e3edb8 100644
--- a/Jellyfin.Data/Entities/LibraryRoot.cs
+++ b/Jellyfin.Data/Entities/LibraryRoot.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,182 +9,190 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class LibraryRoot
- {
- partial void Init();
+ [Table("LibraryRoot")]
+ public partial class LibraryRoot
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected LibraryRoot()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected LibraryRoot()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static LibraryRoot CreateLibraryRootUnsafe()
- {
- return new LibraryRoot();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static LibraryRoot CreateLibraryRootUnsafe()
+ {
+ return new LibraryRoot();
+ }
- ///
- /// Public constructor with required data
- ///
- /// Absolute Path
- public LibraryRoot(string path)
- {
- if (string.IsNullOrEmpty(path)) throw new ArgumentNullException(nameof(path));
- this.Path = path;
+ ///
+ /// Public constructor with required data
+ ///
+ /// Absolute Path
+ public LibraryRoot(string path)
+ {
+ if (string.IsNullOrEmpty(path)) throw new ArgumentNullException(nameof(path));
+ this.Path = path;
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// Absolute Path
- public static LibraryRoot Create(string path)
- {
- return new LibraryRoot(path);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// Absolute Path
+ public static LibraryRoot Create(string path)
+ {
+ return new LibraryRoot(path);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Path
- ///
- protected string _Path;
- ///
- /// When provided in a partial class, allows value of Path to be changed before setting.
- ///
- partial void SetPath(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Path to be changed before returning.
- ///
- partial void GetPath(ref string result);
-
- ///
- /// Required, Max length = 65535
- /// Absolute Path
- ///
- [Required]
- [MaxLength(65535)]
- [StringLength(65535)]
- public string Path
- {
- get
- {
- string value = _Path;
- GetPath(ref value);
- return (_Path = value);
- }
- set
- {
- string oldValue = _Path;
- SetPath(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Path = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for NetworkPath
- ///
- protected string _NetworkPath;
- ///
- /// When provided in a partial class, allows value of NetworkPath to be changed before setting.
- ///
- partial void SetNetworkPath(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of NetworkPath to be changed before returning.
- ///
- partial void GetNetworkPath(ref string result);
+ ///
+ /// Backing field for Path
+ ///
+ protected string _Path;
+ ///
+ /// When provided in a partial class, allows value of Path to be changed before setting.
+ ///
+ partial void SetPath(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Path to be changed before returning.
+ ///
+ partial void GetPath(ref string result);
- ///
- /// Max length = 65535
- /// Absolute network path, for example for transcoding sattelites.
- ///
- [MaxLength(65535)]
- [StringLength(65535)]
- public string NetworkPath
- {
- get
- {
- string value = _NetworkPath;
- GetNetworkPath(ref value);
- return (_NetworkPath = value);
- }
- set
- {
- string oldValue = _NetworkPath;
- SetNetworkPath(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Required, Max length = 65535
+ /// Absolute Path
+ ///
+ [Required]
+ [MaxLength(65535)]
+ [StringLength(65535)]
+ public string Path
+ {
+ get
{
- _NetworkPath = value;
+ string value = _Path;
+ GetPath(ref value);
+ return (_Path = value);
}
- }
- }
+ set
+ {
+ string oldValue = _Path;
+ SetPath(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Path = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for NetworkPath
+ ///
+ protected string _NetworkPath;
+ ///
+ /// When provided in a partial class, allows value of NetworkPath to be changed before setting.
+ ///
+ partial void SetNetworkPath(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of NetworkPath to be changed before returning.
+ ///
+ partial void GetNetworkPath(ref string result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Max length = 65535
+ /// Absolute network path, for example for transcoding sattelites.
+ ///
+ [MaxLength(65535)]
+ [StringLength(65535)]
+ public string NetworkPath
+ {
+ get
+ {
+ string value = _NetworkPath;
+ GetNetworkPath(ref value);
+ return (_NetworkPath = value);
+ }
+ set
+ {
+ string oldValue = _NetworkPath;
+ SetNetworkPath(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _NetworkPath = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- public virtual global::Jellyfin.Data.Entities.Library Library { get; set; }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
- }
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ ///
+ /// Required
+ ///
+ [ForeignKey("Library_Id")]
+ public virtual Library Library { get; set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/MediaFile.cs b/Jellyfin.Data/Entities/MediaFile.cs
index 2a47a9632..dbb65a6f7 100644
--- a/Jellyfin.Data/Entities/MediaFile.cs
+++ b/Jellyfin.Data/Entities/MediaFile.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,189 +9,197 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class MediaFile
- {
- partial void Init();
+ [Table("MediaFile")]
+ public partial class MediaFile
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected MediaFile()
- {
- MediaFileStreams = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected MediaFile()
+ {
+ MediaFileStreams = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static MediaFile CreateMediaFileUnsafe()
- {
- return new MediaFile();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static MediaFile CreateMediaFileUnsafe()
+ {
+ return new MediaFile();
+ }
- ///
- /// Public constructor with required data
- ///
- /// Relative to the LibraryRoot
- ///
- ///
- public MediaFile(string path, global::Jellyfin.Data.Enums.MediaFileKind kind, global::Jellyfin.Data.Entities.Release _release0)
- {
- if (string.IsNullOrEmpty(path)) throw new ArgumentNullException(nameof(path));
- this.Path = path;
+ ///
+ /// Public constructor with required data
+ ///
+ /// Relative to the LibraryRoot
+ ///
+ ///
+ public MediaFile(string path, Enums.MediaFileKind kind, Release _release0)
+ {
+ if (string.IsNullOrEmpty(path)) throw new ArgumentNullException(nameof(path));
+ this.Path = path;
- this.Kind = kind;
+ this.Kind = kind;
- if (_release0 == null) throw new ArgumentNullException(nameof(_release0));
- _release0.MediaFiles.Add(this);
+ if (_release0 == null) throw new ArgumentNullException(nameof(_release0));
+ _release0.MediaFiles.Add(this);
- this.MediaFileStreams = new System.Collections.Generic.HashSet();
+ this.MediaFileStreams = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// Relative to the LibraryRoot
- ///
- ///
- public static MediaFile Create(string path, global::Jellyfin.Data.Enums.MediaFileKind kind, global::Jellyfin.Data.Entities.Release _release0)
- {
- return new MediaFile(path, kind, _release0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// Relative to the LibraryRoot
+ ///
+ ///
+ public static MediaFile Create(string path, Enums.MediaFileKind kind, Release _release0)
+ {
+ return new MediaFile(path, kind, _release0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Path
- ///
- protected string _Path;
- ///
- /// When provided in a partial class, allows value of Path to be changed before setting.
- ///
- partial void SetPath(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Path to be changed before returning.
- ///
- partial void GetPath(ref string result);
-
- ///
- /// Required, Max length = 65535
- /// Relative to the LibraryRoot
- ///
- [Required]
- [MaxLength(65535)]
- [StringLength(65535)]
- public string Path
- {
- get
- {
- string value = _Path;
- GetPath(ref value);
- return (_Path = value);
- }
- set
- {
- string oldValue = _Path;
- SetPath(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Path = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for Kind
- ///
- protected global::Jellyfin.Data.Enums.MediaFileKind _Kind;
- ///
- /// When provided in a partial class, allows value of Kind to be changed before setting.
- ///
- partial void SetKind(global::Jellyfin.Data.Enums.MediaFileKind oldValue, ref global::Jellyfin.Data.Enums.MediaFileKind newValue);
- ///
- /// When provided in a partial class, allows value of Kind to be changed before returning.
- ///
- partial void GetKind(ref global::Jellyfin.Data.Enums.MediaFileKind result);
+ ///
+ /// Backing field for Path
+ ///
+ protected string _Path;
+ ///
+ /// When provided in a partial class, allows value of Path to be changed before setting.
+ ///
+ partial void SetPath(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Path to be changed before returning.
+ ///
+ partial void GetPath(ref string result);
- ///
- /// Required
- ///
- [Required]
- public global::Jellyfin.Data.Enums.MediaFileKind Kind
- {
- get
- {
- global::Jellyfin.Data.Enums.MediaFileKind value = _Kind;
- GetKind(ref value);
- return (_Kind = value);
- }
- set
- {
- global::Jellyfin.Data.Enums.MediaFileKind oldValue = _Kind;
- SetKind(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Required, Max length = 65535
+ /// Relative to the LibraryRoot
+ ///
+ [Required]
+ [MaxLength(65535)]
+ [StringLength(65535)]
+ public string Path
+ {
+ get
{
- _Kind = value;
+ string value = _Path;
+ GetPath(ref value);
+ return (_Path = value);
}
- }
- }
+ set
+ {
+ string oldValue = _Path;
+ SetPath(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Path = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for Kind
+ ///
+ protected Enums.MediaFileKind _Kind;
+ ///
+ /// When provided in a partial class, allows value of Kind to be changed before setting.
+ ///
+ partial void SetKind(Enums.MediaFileKind oldValue, ref Enums.MediaFileKind newValue);
+ ///
+ /// When provided in a partial class, allows value of Kind to be changed before returning.
+ ///
+ partial void GetKind(ref Enums.MediaFileKind result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Required
+ ///
+ [Required]
+ public Enums.MediaFileKind Kind
+ {
+ get
+ {
+ Enums.MediaFileKind value = _Kind;
+ GetKind(ref value);
+ return (_Kind = value);
+ }
+ set
+ {
+ Enums.MediaFileKind oldValue = _Kind;
+ SetKind(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Kind = value;
+ }
+ }
+ }
- public virtual ICollection MediaFileStreams { get; protected set; }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
- }
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ [ForeignKey("MediaFileStream_MediaFileStreams_Id")]
+ public virtual ICollection MediaFileStreams { get; protected set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/MediaFileStream.cs b/Jellyfin.Data/Entities/MediaFileStream.cs
index 6593d3cf7..3ce18b8d7 100644
--- a/Jellyfin.Data/Entities/MediaFileStream.cs
+++ b/Jellyfin.Data/Entities/MediaFileStream.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,140 +9,147 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class MediaFileStream
- {
- partial void Init();
+ [Table("MediaFileStream")]
+ public partial class MediaFileStream
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected MediaFileStream()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected MediaFileStream()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static MediaFileStream CreateMediaFileStreamUnsafe()
- {
- return new MediaFileStream();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static MediaFileStream CreateMediaFileStreamUnsafe()
+ {
+ return new MediaFileStream();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- ///
- public MediaFileStream(int streamnumber, global::Jellyfin.Data.Entities.MediaFile _mediafile0)
- {
- this.StreamNumber = streamnumber;
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ ///
+ public MediaFileStream(int streamnumber, MediaFile _mediafile0)
+ {
+ this.StreamNumber = streamnumber;
- if (_mediafile0 == null) throw new ArgumentNullException(nameof(_mediafile0));
- _mediafile0.MediaFileStreams.Add(this);
+ if (_mediafile0 == null) throw new ArgumentNullException(nameof(_mediafile0));
+ _mediafile0.MediaFileStreams.Add(this);
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- ///
- public static MediaFileStream Create(int streamnumber, global::Jellyfin.Data.Entities.MediaFile _mediafile0)
- {
- return new MediaFileStream(streamnumber, _mediafile0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ ///
+ public static MediaFileStream Create(int streamnumber, MediaFile _mediafile0)
+ {
+ return new MediaFileStream(streamnumber, _mediafile0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for StreamNumber
- ///
- protected int _StreamNumber;
- ///
- /// When provided in a partial class, allows value of StreamNumber to be changed before setting.
- ///
- partial void SetStreamNumber(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of StreamNumber to be changed before returning.
- ///
- partial void GetStreamNumber(ref int result);
-
- ///
- /// Required
- ///
- [Required]
- public int StreamNumber
- {
- get
- {
- int value = _StreamNumber;
- GetStreamNumber(ref value);
- return (_StreamNumber = value);
- }
- set
- {
- int oldValue = _StreamNumber;
- SetStreamNumber(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _StreamNumber = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for StreamNumber
+ ///
+ protected int _StreamNumber;
+ ///
+ /// When provided in a partial class, allows value of StreamNumber to be changed before setting.
+ ///
+ partial void SetStreamNumber(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of StreamNumber to be changed before returning.
+ ///
+ partial void GetStreamNumber(ref int result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Required
+ ///
+ [Required]
+ public int StreamNumber
+ {
+ get
+ {
+ int value = _StreamNumber;
+ GetStreamNumber(ref value);
+ return (_StreamNumber = value);
+ }
+ set
+ {
+ int oldValue = _StreamNumber;
+ SetStreamNumber(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _StreamNumber = value;
+ }
+ }
+ }
- }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
+
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ }
}
diff --git a/Jellyfin.Data/Entities/Metadata.cs b/Jellyfin.Data/Entities/Metadata.cs
index 6057017e9..5cba24ee3 100644
--- a/Jellyfin.Data/Entities/Metadata.cs
+++ b/Jellyfin.Data/Entities/Metadata.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,365 +9,377 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public abstract partial class Metadata
- {
- partial void Init();
+ [Table("Metadata")]
+ public abstract partial class Metadata
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to being abstract.
- ///
- protected Metadata()
- {
- PersonRoles = new System.Collections.Generic.HashSet();
- Genres = new System.Collections.Generic.HashSet();
- Artwork = new System.Collections.Generic.HashSet();
- Ratings = new System.Collections.Generic.HashSet();
- Sources = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to being abstract.
+ ///
+ protected Metadata()
+ {
+ PersonRoles = new HashSet();
+ Genres = new HashSet();
+ Artwork = new HashSet();
+ Ratings = new HashSet();
+ Sources = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Public constructor with required data
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- protected Metadata(string title, string language, DateTime dateadded, DateTime datemodified)
- {
- if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
- this.Title = title;
+ ///
+ /// Public constructor with required data
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ protected Metadata(string title, string language, DateTime dateadded, DateTime datemodified)
+ {
+ if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
+ this.Title = title;
- if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
- this.Language = language;
+ if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
+ this.Language = language;
- this.PersonRoles = new System.Collections.Generic.HashSet();
- this.Genres = new System.Collections.Generic.HashSet();
- this.Artwork = new System.Collections.Generic.HashSet();
- this.Ratings = new System.Collections.Generic.HashSet();
- this.Sources = new System.Collections.Generic.HashSet();
+ this.PersonRoles = new HashSet();
+ this.Genres = new HashSet();
+ this.Artwork = new HashSet();
+ this.Ratings = new HashSet();
+ this.Sources = new HashSet();
- Init();
- }
+ Init();
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Title
- ///
- protected string _Title;
- ///
- /// When provided in a partial class, allows value of Title to be changed before setting.
- ///
- partial void SetTitle(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Title to be changed before returning.
- ///
- partial void GetTitle(ref string result);
-
- ///
- /// Required, Max length = 1024
- /// The title or name of the object
- ///
- [Required]
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Title
- {
- get
- {
- string value = _Title;
- GetTitle(ref value);
- return (_Title = value);
- }
- set
- {
- string oldValue = _Title;
- SetTitle(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Title = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for OriginalTitle
- ///
- protected string _OriginalTitle;
- ///
- /// When provided in a partial class, allows value of OriginalTitle to be changed before setting.
- ///
- partial void SetOriginalTitle(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of OriginalTitle to be changed before returning.
- ///
- partial void GetOriginalTitle(ref string result);
+ ///
+ /// Backing field for Title
+ ///
+ protected string _Title;
+ ///
+ /// When provided in a partial class, allows value of Title to be changed before setting.
+ ///
+ partial void SetTitle(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Title to be changed before returning.
+ ///
+ partial void GetTitle(ref string result);
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string OriginalTitle
- {
- get
- {
- string value = _OriginalTitle;
- GetOriginalTitle(ref value);
- return (_OriginalTitle = value);
- }
- set
- {
- string oldValue = _OriginalTitle;
- SetOriginalTitle(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Required, Max length = 1024
+ /// The title or name of the object
+ ///
+ [Required]
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Title
+ {
+ get
{
- _OriginalTitle = value;
+ string value = _Title;
+ GetTitle(ref value);
+ return (_Title = value);
}
- }
- }
-
- ///
- /// Backing field for SortTitle
- ///
- protected string _SortTitle;
- ///
- /// When provided in a partial class, allows value of SortTitle to be changed before setting.
- ///
- partial void SetSortTitle(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of SortTitle to be changed before returning.
- ///
- partial void GetSortTitle(ref string result);
-
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string SortTitle
- {
- get
- {
- string value = _SortTitle;
- GetSortTitle(ref value);
- return (_SortTitle = value);
- }
- set
- {
- string oldValue = _SortTitle;
- SetSortTitle(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _SortTitle = value;
+ string oldValue = _Title;
+ SetTitle(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Title = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for Language
- ///
- protected string _Language;
- ///
- /// When provided in a partial class, allows value of Language to be changed before setting.
- ///
- partial void SetLanguage(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Language to be changed before returning.
- ///
- partial void GetLanguage(ref string result);
+ ///
+ /// Backing field for OriginalTitle
+ ///
+ protected string _OriginalTitle;
+ ///
+ /// When provided in a partial class, allows value of OriginalTitle to be changed before setting.
+ ///
+ partial void SetOriginalTitle(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of OriginalTitle to be changed before returning.
+ ///
+ partial void GetOriginalTitle(ref string result);
- ///
- /// Required, Min length = 3, Max length = 3
- /// ISO-639-3 3-character language codes
- ///
- [Required]
- [MinLength(3)]
- [MaxLength(3)]
- [StringLength(3)]
- public string Language
- {
- get
- {
- string value = _Language;
- GetLanguage(ref value);
- return (_Language = value);
- }
- set
- {
- string oldValue = _Language;
- SetLanguage(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string OriginalTitle
+ {
+ get
{
- _Language = value;
+ string value = _OriginalTitle;
+ GetOriginalTitle(ref value);
+ return (_OriginalTitle = value);
}
- }
- }
-
- ///
- /// Backing field for ReleaseDate
- ///
- protected DateTimeOffset? _ReleaseDate;
- ///
- /// When provided in a partial class, allows value of ReleaseDate to be changed before setting.
- ///
- partial void SetReleaseDate(DateTimeOffset? oldValue, ref DateTimeOffset? newValue);
- ///
- /// When provided in a partial class, allows value of ReleaseDate to be changed before returning.
- ///
- partial void GetReleaseDate(ref DateTimeOffset? result);
-
- public DateTimeOffset? ReleaseDate
- {
- get
- {
- DateTimeOffset? value = _ReleaseDate;
- GetReleaseDate(ref value);
- return (_ReleaseDate = value);
- }
- set
- {
- DateTimeOffset? oldValue = _ReleaseDate;
- SetReleaseDate(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _ReleaseDate = value;
+ string oldValue = _OriginalTitle;
+ SetOriginalTitle(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _OriginalTitle = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for DateAdded
- ///
- protected DateTime _DateAdded;
- ///
- /// When provided in a partial class, allows value of DateAdded to be changed before setting.
- ///
- partial void SetDateAdded(DateTime oldValue, ref DateTime newValue);
- ///
- /// When provided in a partial class, allows value of DateAdded to be changed before returning.
- ///
- partial void GetDateAdded(ref DateTime result);
+ ///
+ /// Backing field for SortTitle
+ ///
+ protected string _SortTitle;
+ ///
+ /// When provided in a partial class, allows value of SortTitle to be changed before setting.
+ ///
+ partial void SetSortTitle(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of SortTitle to be changed before returning.
+ ///
+ partial void GetSortTitle(ref string result);
- ///
- /// Required
- ///
- [Required]
- public DateTime DateAdded
- {
- get
- {
- DateTime value = _DateAdded;
- GetDateAdded(ref value);
- return (_DateAdded = value);
- }
- internal set
- {
- DateTime oldValue = _DateAdded;
- SetDateAdded(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string SortTitle
+ {
+ get
{
- _DateAdded = value;
+ string value = _SortTitle;
+ GetSortTitle(ref value);
+ return (_SortTitle = value);
}
- }
- }
-
- ///
- /// Backing field for DateModified
- ///
- protected DateTime _DateModified;
- ///
- /// When provided in a partial class, allows value of DateModified to be changed before setting.
- ///
- partial void SetDateModified(DateTime oldValue, ref DateTime newValue);
- ///
- /// When provided in a partial class, allows value of DateModified to be changed before returning.
- ///
- partial void GetDateModified(ref DateTime result);
-
- ///
- /// Required
- ///
- [Required]
- public DateTime DateModified
- {
- get
- {
- DateTime value = _DateModified;
- GetDateModified(ref value);
- return (_DateModified = value);
- }
- internal set
- {
- DateTime oldValue = _DateModified;
- SetDateModified(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _DateModified = value;
+ string oldValue = _SortTitle;
+ SetSortTitle(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _SortTitle = value;
+ }
}
- }
- }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for Language
+ ///
+ protected string _Language;
+ ///
+ /// When provided in a partial class, allows value of Language to be changed before setting.
+ ///
+ partial void SetLanguage(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Language to be changed before returning.
+ ///
+ partial void GetLanguage(ref string result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Required, Min length = 3, Max length = 3
+ /// ISO-639-3 3-character language codes
+ ///
+ [Required]
+ [MinLength(3)]
+ [MaxLength(3)]
+ [StringLength(3)]
+ public string Language
+ {
+ get
+ {
+ string value = _Language;
+ GetLanguage(ref value);
+ return (_Language = value);
+ }
+ set
+ {
+ string oldValue = _Language;
+ SetLanguage(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Language = value;
+ }
+ }
+ }
- public virtual ICollection PersonRoles { get; protected set; }
+ ///
+ /// Backing field for ReleaseDate
+ ///
+ protected DateTimeOffset? _ReleaseDate;
+ ///
+ /// When provided in a partial class, allows value of ReleaseDate to be changed before setting.
+ ///
+ partial void SetReleaseDate(DateTimeOffset? oldValue, ref DateTimeOffset? newValue);
+ ///
+ /// When provided in a partial class, allows value of ReleaseDate to be changed before returning.
+ ///
+ partial void GetReleaseDate(ref DateTimeOffset? result);
- public virtual ICollection Genres { get; protected set; }
+ public DateTimeOffset? ReleaseDate
+ {
+ get
+ {
+ DateTimeOffset? value = _ReleaseDate;
+ GetReleaseDate(ref value);
+ return (_ReleaseDate = value);
+ }
+ set
+ {
+ DateTimeOffset? oldValue = _ReleaseDate;
+ SetReleaseDate(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _ReleaseDate = value;
+ }
+ }
+ }
- public virtual ICollection Artwork { get; protected set; }
+ ///
+ /// Backing field for DateAdded
+ ///
+ protected DateTime _DateAdded;
+ ///
+ /// When provided in a partial class, allows value of DateAdded to be changed before setting.
+ ///
+ partial void SetDateAdded(DateTime oldValue, ref DateTime newValue);
+ ///
+ /// When provided in a partial class, allows value of DateAdded to be changed before returning.
+ ///
+ partial void GetDateAdded(ref DateTime result);
- public virtual ICollection Ratings { get; protected set; }
+ ///
+ /// Required
+ ///
+ [Required]
+ public DateTime DateAdded
+ {
+ get
+ {
+ DateTime value = _DateAdded;
+ GetDateAdded(ref value);
+ return (_DateAdded = value);
+ }
+ internal set
+ {
+ DateTime oldValue = _DateAdded;
+ SetDateAdded(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _DateAdded = value;
+ }
+ }
+ }
- public virtual ICollection Sources { get; protected set; }
+ ///
+ /// Backing field for DateModified
+ ///
+ protected DateTime _DateModified;
+ ///
+ /// When provided in a partial class, allows value of DateModified to be changed before setting.
+ ///
+ partial void SetDateModified(DateTime oldValue, ref DateTime newValue);
+ ///
+ /// When provided in a partial class, allows value of DateModified to be changed before returning.
+ ///
+ partial void GetDateModified(ref DateTime result);
- }
+ ///
+ /// Required
+ ///
+ [Required]
+ public DateTime DateModified
+ {
+ get
+ {
+ DateTime value = _DateModified;
+ GetDateModified(ref value);
+ return (_DateModified = value);
+ }
+ internal set
+ {
+ DateTime oldValue = _DateModified;
+ SetDateModified(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _DateModified = value;
+ }
+ }
+ }
+
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
+
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ [ForeignKey("PersonRole_PersonRoles_Id")]
+ public virtual ICollection PersonRoles { get; protected set; }
+
+ [ForeignKey("PersonRole_PersonRoles_Id")]
+ public virtual ICollection Genres { get; protected set; }
+
+ [ForeignKey("PersonRole_PersonRoles_Id")]
+ public virtual ICollection Artwork { get; protected set; }
+
+ [ForeignKey("PersonRole_PersonRoles_Id")]
+ public virtual ICollection Ratings { get; protected set; }
+
+ [ForeignKey("PersonRole_PersonRoles_Id")]
+ public virtual ICollection Sources { get; protected set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/MetadataProvider.cs b/Jellyfin.Data/Entities/MetadataProvider.cs
index 3a8f5854e..bc6e04277 100644
--- a/Jellyfin.Data/Entities/MetadataProvider.cs
+++ b/Jellyfin.Data/Entities/MetadataProvider.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,138 +9,145 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class MetadataProvider
- {
- partial void Init();
+ [Table("MetadataProvider")]
+ public partial class MetadataProvider
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected MetadataProvider()
- {
- Init();
- }
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected MetadataProvider()
+ {
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static MetadataProvider CreateMetadataProviderUnsafe()
- {
- return new MetadataProvider();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static MetadataProvider CreateMetadataProviderUnsafe()
+ {
+ return new MetadataProvider();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- public MetadataProvider(string name)
- {
- if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
- this.Name = name;
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ public MetadataProvider(string name)
+ {
+ if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
+ this.Name = name;
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- public static MetadataProvider Create(string name)
- {
- return new MetadataProvider(name);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ public static MetadataProvider Create(string name)
+ {
+ return new MetadataProvider(name);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for Name
- ///
- protected string _Name;
- ///
- /// When provided in a partial class, allows value of Name to be changed before setting.
- ///
- partial void SetName(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Name to be changed before returning.
- ///
- partial void GetName(ref string result);
-
- ///
- /// Required, Max length = 1024
- ///
- [Required]
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Name
- {
- get
- {
- string value = _Name;
- GetName(ref value);
- return (_Name = value);
- }
- set
- {
- string oldValue = _Name;
- SetName(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _Name = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for Name
+ ///
+ protected string _Name;
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before setting.
+ ///
+ partial void SetName(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Name to be changed before returning.
+ ///
+ partial void GetName(ref string result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Required, Max length = 1024
+ ///
+ [Required]
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Name
+ {
+ get
+ {
+ string value = _Name;
+ GetName(ref value);
+ return (_Name = value);
+ }
+ set
+ {
+ string oldValue = _Name;
+ SetName(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Name = value;
+ }
+ }
+ }
- }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
+
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ }
}
diff --git a/Jellyfin.Data/Entities/MetadataProviderId.cs b/Jellyfin.Data/Entities/MetadataProviderId.cs
index 87ff19e26..d381856f3 100644
--- a/Jellyfin.Data/Entities/MetadataProviderId.cs
+++ b/Jellyfin.Data/Entities/MetadataProviderId.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,169 +9,177 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class MetadataProviderId
- {
- partial void Init();
+ [Table("MetadataProviderId")]
+ public partial class MetadataProviderId
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected MetadataProviderId()
- {
- // NOTE: This class has one-to-one associations with MetadataProviderId.
- // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected MetadataProviderId()
+ {
+ // NOTE: This class has one-to-one associations with MetadataProviderId.
+ // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static MetadataProviderId CreateMetadataProviderIdUnsafe()
- {
- return new MetadataProviderId();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static MetadataProviderId CreateMetadataProviderIdUnsafe()
+ {
+ return new MetadataProviderId();
+ }
- ///
- /// Public constructor with required data
- ///
- ///
- ///
- ///
- ///
- ///
- public MetadataProviderId(string providerid, global::Jellyfin.Data.Entities.Metadata _metadata0, global::Jellyfin.Data.Entities.Person _person1, global::Jellyfin.Data.Entities.PersonRole _personrole2, global::Jellyfin.Data.Entities.RatingSource _ratingsource3)
- {
- // NOTE: This class has one-to-one associations with MetadataProviderId.
- // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
+ ///
+ /// Public constructor with required data
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public MetadataProviderId(string providerid, Metadata _metadata0, Person _person1, PersonRole _personrole2, RatingSource _ratingsource3)
+ {
+ // NOTE: This class has one-to-one associations with MetadataProviderId.
+ // One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.
- if (string.IsNullOrEmpty(providerid)) throw new ArgumentNullException(nameof(providerid));
- this.ProviderId = providerid;
+ if (string.IsNullOrEmpty(providerid)) throw new ArgumentNullException(nameof(providerid));
+ this.ProviderId = providerid;
- if (_metadata0 == null) throw new ArgumentNullException(nameof(_metadata0));
- _metadata0.Sources.Add(this);
+ if (_metadata0 == null) throw new ArgumentNullException(nameof(_metadata0));
+ _metadata0.Sources.Add(this);
- if (_person1 == null) throw new ArgumentNullException(nameof(_person1));
- _person1.Sources.Add(this);
+ if (_person1 == null) throw new ArgumentNullException(nameof(_person1));
+ _person1.Sources.Add(this);
- if (_personrole2 == null) throw new ArgumentNullException(nameof(_personrole2));
- _personrole2.Sources.Add(this);
+ if (_personrole2 == null) throw new ArgumentNullException(nameof(_personrole2));
+ _personrole2.Sources.Add(this);
- if (_ratingsource3 == null) throw new ArgumentNullException(nameof(_ratingsource3));
- _ratingsource3.Source = this;
+ if (_ratingsource3 == null) throw new ArgumentNullException(nameof(_ratingsource3));
+ _ratingsource3.Source = this;
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- ///
- ///
- ///
- ///
- ///
- public static MetadataProviderId Create(string providerid, global::Jellyfin.Data.Entities.Metadata _metadata0, global::Jellyfin.Data.Entities.Person _person1, global::Jellyfin.Data.Entities.PersonRole _personrole2, global::Jellyfin.Data.Entities.RatingSource _ratingsource3)
- {
- return new MetadataProviderId(providerid, _metadata0, _person1, _personrole2, _ratingsource3);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static MetadataProviderId Create(string providerid, Metadata _metadata0, Person _person1, PersonRole _personrole2, RatingSource _ratingsource3)
+ {
+ return new MetadataProviderId(providerid, _metadata0, _person1, _personrole2, _ratingsource3);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Id
- ///
- internal int _Id;
- ///
- /// When provided in a partial class, allows value of Id to be changed before setting.
- ///
- partial void SetId(int oldValue, ref int newValue);
- ///
- /// When provided in a partial class, allows value of Id to be changed before returning.
- ///
- partial void GetId(ref int result);
+ ///
+ /// Backing field for Id
+ ///
+ internal int _Id;
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before setting.
+ ///
+ partial void SetId(int oldValue, ref int newValue);
+ ///
+ /// When provided in a partial class, allows value of Id to be changed before returning.
+ ///
+ partial void GetId(ref int result);
- ///
- /// Identity, Indexed, Required
- ///
- [Key]
- [Required]
- public int Id
- {
- get
- {
- int value = _Id;
- GetId(ref value);
- return (_Id = value);
- }
- protected set
- {
- int oldValue = _Id;
- SetId(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Identity, Indexed, Required
+ ///
+ [Key]
+ [Required]
+ [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
+ public int Id
+ {
+ get
{
- _Id = value;
+ int value = _Id;
+ GetId(ref value);
+ return (_Id = value);
}
- }
- }
-
- ///
- /// Backing field for ProviderId
- ///
- protected string _ProviderId;
- ///
- /// When provided in a partial class, allows value of ProviderId to be changed before setting.
- ///
- partial void SetProviderId(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of ProviderId to be changed before returning.
- ///
- partial void GetProviderId(ref string result);
-
- ///
- /// Required, Max length = 255
- ///
- [Required]
- [MaxLength(255)]
- [StringLength(255)]
- public string ProviderId
- {
- get
- {
- string value = _ProviderId;
- GetProviderId(ref value);
- return (_ProviderId = value);
- }
- set
- {
- string oldValue = _ProviderId;
- SetProviderId(oldValue, ref value);
- if (oldValue != value)
+ protected set
{
- _ProviderId = value;
+ int oldValue = _Id;
+ SetId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Id = value;
+ }
}
- }
- }
+ }
- ///
- /// Required
- ///
- [ConcurrencyCheck]
- [Required]
- public byte[] Timestamp { get; set; }
+ ///
+ /// Backing field for ProviderId
+ ///
+ protected string _ProviderId;
+ ///
+ /// When provided in a partial class, allows value of ProviderId to be changed before setting.
+ ///
+ partial void SetProviderId(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of ProviderId to be changed before returning.
+ ///
+ partial void GetProviderId(ref string result);
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Required, Max length = 255
+ ///
+ [Required]
+ [MaxLength(255)]
+ [StringLength(255)]
+ public string ProviderId
+ {
+ get
+ {
+ string value = _ProviderId;
+ GetProviderId(ref value);
+ return (_ProviderId = value);
+ }
+ set
+ {
+ string oldValue = _ProviderId;
+ SetProviderId(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _ProviderId = value;
+ }
+ }
+ }
- ///
- /// Required
- ///
- public virtual global::Jellyfin.Data.Entities.MetadataProvider MetadataProvider { get; set; }
+ ///
+ /// Required, ConcurrenyToken
+ ///
+ [ConcurrencyCheck]
+ [Required]
+ public uint RowVersion { get; set; }
- }
+ public void OnSavingChanges()
+ {
+ RowVersion++;
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+
+ ///
+ /// Required
+ ///
+ [ForeignKey("MetadataProvider_Id")]
+ public virtual MetadataProvider MetadataProvider { get; set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/Movie.cs b/Jellyfin.Data/Entities/Movie.cs
index dfcc05a94..23a340b1b 100644
--- a/Jellyfin.Data/Entities/Movie.cs
+++ b/Jellyfin.Data/Entities/Movie.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,64 +9,67 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class Movie: global::Jellyfin.Data.Entities.LibraryItem
- {
- partial void Init();
+ [Table("Movie")]
+ public partial class Movie : LibraryItem
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected Movie(): base()
- {
- Releases = new System.Collections.Generic.HashSet();
- MovieMetadata = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected Movie() : base()
+ {
+ Releases = new HashSet();
+ MovieMetadata = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static Movie CreateMovieUnsafe()
- {
- return new Movie();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static Movie CreateMovieUnsafe()
+ {
+ return new Movie();
+ }
- ///
- /// Public constructor with required data
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- public Movie(Guid urlid, DateTime dateadded)
- {
- this.UrlId = urlid;
+ ///
+ /// Public constructor with required data
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ public Movie(Guid urlid, DateTime dateadded)
+ {
+ this.UrlId = urlid;
- this.Releases = new System.Collections.Generic.HashSet();
- this.MovieMetadata = new System.Collections.Generic.HashSet();
+ this.Releases = new HashSet();
+ this.MovieMetadata = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// This is whats gets displayed in the Urls and API requests. This could also be a string.
- public static Movie Create(Guid urlid, DateTime dateadded)
- {
- return new Movie(urlid, dateadded);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// This is whats gets displayed in the Urls and API requests. This could also be a string.
+ public static Movie Create(Guid urlid, DateTime dateadded)
+ {
+ return new Movie(urlid, dateadded);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
- public virtual ICollection Releases { get; protected set; }
+ [ForeignKey("Release_Releases_Id")]
+ public virtual ICollection Releases { get; protected set; }
- public virtual ICollection MovieMetadata { get; protected set; }
+ [ForeignKey("MovieMetadata_MovieMetadata_Id")]
+ public virtual ICollection MovieMetadata { get; protected set; }
- }
+ }
}
diff --git a/Jellyfin.Data/Entities/MovieMetadata.cs b/Jellyfin.Data/Entities/MovieMetadata.cs
index bd847da8f..090761877 100644
--- a/Jellyfin.Data/Entities/MovieMetadata.cs
+++ b/Jellyfin.Data/Entities/MovieMetadata.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,219 +9,220 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class MovieMetadata: global::Jellyfin.Data.Entities.Metadata
- {
- partial void Init();
+ [Table("MovieMetadata")]
+ public partial class MovieMetadata : Metadata
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected MovieMetadata(): base()
- {
- Studios = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected MovieMetadata() : base()
+ {
+ Studios = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
- ///
- public static MovieMetadata CreateMovieMetadataUnsafe()
- {
- return new MovieMetadata();
- }
+ ///
+ /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
+ ///
+ public static MovieMetadata CreateMovieMetadataUnsafe()
+ {
+ return new MovieMetadata();
+ }
- ///
- /// Public constructor with required data
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public MovieMetadata(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.Movie _movie0)
- {
- if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
- this.Title = title;
+ ///
+ /// Public constructor with required data
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public MovieMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Movie _movie0)
+ {
+ if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
+ this.Title = title;
- if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
- this.Language = language;
+ if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language));
+ this.Language = language;
- if (_movie0 == null) throw new ArgumentNullException(nameof(_movie0));
- _movie0.MovieMetadata.Add(this);
+ if (_movie0 == null) throw new ArgumentNullException(nameof(_movie0));
+ _movie0.MovieMetadata.Add(this);
- this.Studios = new System.Collections.Generic.HashSet();
+ this.Studios = new HashSet();
- Init();
- }
+ Init();
+ }
- ///
- /// Static create function (for use in LINQ queries, etc.)
- ///
- /// The title or name of the object
- /// ISO-639-3 3-character language codes
- ///
- public static MovieMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, global::Jellyfin.Data.Entities.Movie _movie0)
- {
- return new MovieMetadata(title, language, dateadded, datemodified, _movie0);
- }
+ ///
+ /// Static create function (for use in LINQ queries, etc.)
+ ///
+ /// The title or name of the object
+ /// ISO-639-3 3-character language codes
+ ///
+ public static MovieMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Movie _movie0)
+ {
+ return new MovieMetadata(title, language, dateadded, datemodified, _movie0);
+ }
- /*************************************************************************
- * Properties
- *************************************************************************/
+ /*************************************************************************
+ * Properties
+ *************************************************************************/
- ///
- /// Backing field for Outline
- ///
- protected string _Outline;
- ///
- /// When provided in a partial class, allows value of Outline to be changed before setting.
- ///
- partial void SetOutline(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Outline to be changed before returning.
- ///
- partial void GetOutline(ref string result);
+ ///
+ /// Backing field for Outline
+ ///
+ protected string _Outline;
+ ///
+ /// When provided in a partial class, allows value of Outline to be changed before setting.
+ ///
+ partial void SetOutline(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Outline to be changed before returning.
+ ///
+ partial void GetOutline(ref string result);
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Outline
- {
- get
- {
- string value = _Outline;
- GetOutline(ref value);
- return (_Outline = value);
- }
- set
- {
- string oldValue = _Outline;
- SetOutline(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Outline
+ {
+ get
{
- _Outline = value;
+ string value = _Outline;
+ GetOutline(ref value);
+ return (_Outline = value);
}
- }
- }
-
- ///
- /// Backing field for Plot
- ///
- protected string _Plot;
- ///
- /// When provided in a partial class, allows value of Plot to be changed before setting.
- ///
- partial void SetPlot(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Plot to be changed before returning.
- ///
- partial void GetPlot(ref string result);
-
- ///
- /// Max length = 65535
- ///
- [MaxLength(65535)]
- [StringLength(65535)]
- public string Plot
- {
- get
- {
- string value = _Plot;
- GetPlot(ref value);
- return (_Plot = value);
- }
- set
- {
- string oldValue = _Plot;
- SetPlot(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _Plot = value;
+ string oldValue = _Outline;
+ SetOutline(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Outline = value;
+ }
}
- }
- }
+ }
- ///
- /// Backing field for Tagline
- ///
- protected string _Tagline;
- ///
- /// When provided in a partial class, allows value of Tagline to be changed before setting.
- ///
- partial void SetTagline(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Tagline to be changed before returning.
- ///
- partial void GetTagline(ref string result);
+ ///
+ /// Backing field for Plot
+ ///
+ protected string _Plot;
+ ///
+ /// When provided in a partial class, allows value of Plot to be changed before setting.
+ ///
+ partial void SetPlot(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Plot to be changed before returning.
+ ///
+ partial void GetPlot(ref string result);
- ///
- /// Max length = 1024
- ///
- [MaxLength(1024)]
- [StringLength(1024)]
- public string Tagline
- {
- get
- {
- string value = _Tagline;
- GetTagline(ref value);
- return (_Tagline = value);
- }
- set
- {
- string oldValue = _Tagline;
- SetTagline(oldValue, ref value);
- if (oldValue != value)
+ ///
+ /// Max length = 65535
+ ///
+ [MaxLength(65535)]
+ [StringLength(65535)]
+ public string Plot
+ {
+ get
{
- _Tagline = value;
+ string value = _Plot;
+ GetPlot(ref value);
+ return (_Plot = value);
}
- }
- }
-
- ///
- /// Backing field for Country
- ///
- protected string _Country;
- ///
- /// When provided in a partial class, allows value of Country to be changed before setting.
- ///
- partial void SetCountry(string oldValue, ref string newValue);
- ///
- /// When provided in a partial class, allows value of Country to be changed before returning.
- ///
- partial void GetCountry(ref string result);
-
- ///
- /// Max length = 2
- ///
- [MaxLength(2)]
- [StringLength(2)]
- public string Country
- {
- get
- {
- string value = _Country;
- GetCountry(ref value);
- return (_Country = value);
- }
- set
- {
- string oldValue = _Country;
- SetCountry(oldValue, ref value);
- if (oldValue != value)
+ set
{
- _Country = value;
+ string oldValue = _Plot;
+ SetPlot(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Plot = value;
+ }
}
- }
- }
+ }
- /*************************************************************************
- * Navigation properties
- *************************************************************************/
+ ///
+ /// Backing field for Tagline
+ ///
+ protected string _Tagline;
+ ///
+ /// When provided in a partial class, allows value of Tagline to be changed before setting.
+ ///
+ partial void SetTagline(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Tagline to be changed before returning.
+ ///
+ partial void GetTagline(ref string result);
- public virtual ICollection Studios { get; protected set; }
+ ///
+ /// Max length = 1024
+ ///
+ [MaxLength(1024)]
+ [StringLength(1024)]
+ public string Tagline
+ {
+ get
+ {
+ string value = _Tagline;
+ GetTagline(ref value);
+ return (_Tagline = value);
+ }
+ set
+ {
+ string oldValue = _Tagline;
+ SetTagline(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Tagline = value;
+ }
+ }
+ }
- }
+ ///
+ /// Backing field for Country
+ ///
+ protected string _Country;
+ ///
+ /// When provided in a partial class, allows value of Country to be changed before setting.
+ ///
+ partial void SetCountry(string oldValue, ref string newValue);
+ ///
+ /// When provided in a partial class, allows value of Country to be changed before returning.
+ ///
+ partial void GetCountry(ref string result);
+
+ ///
+ /// Max length = 2
+ ///
+ [MaxLength(2)]
+ [StringLength(2)]
+ public string Country
+ {
+ get
+ {
+ string value = _Country;
+ GetCountry(ref value);
+ return (_Country = value);
+ }
+ set
+ {
+ string oldValue = _Country;
+ SetCountry(oldValue, ref value);
+ if (oldValue != value)
+ {
+ _Country = value;
+ }
+ }
+ }
+
+ /*************************************************************************
+ * Navigation properties
+ *************************************************************************/
+ [ForeignKey("Company_Studios_Id")]
+ public virtual ICollection Studios { get; protected set; }
+
+ }
}
diff --git a/Jellyfin.Data/Entities/MusicAlbum.cs b/Jellyfin.Data/Entities/MusicAlbum.cs
index 417f2595b..fc9c12286 100644
--- a/Jellyfin.Data/Entities/MusicAlbum.cs
+++ b/Jellyfin.Data/Entities/MusicAlbum.cs
@@ -1,15 +1,3 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-//
-//------------------------------------------------------------------------------
-
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -21,64 +9,66 @@ using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- public partial class MusicAlbum: global::Jellyfin.Data.Entities.LibraryItem
- {
- partial void Init();
+ [Table("MusicAlbum")]
+ public partial class MusicAlbum : LibraryItem
+ {
+ partial void Init();
- ///
- /// Default constructor. Protected due to required properties, but present because EF needs it.
- ///
- protected MusicAlbum(): base()
- {
- MusicAlbumMetadata = new System.Collections.Generic.HashSet();
- Tracks = new System.Collections.Generic.HashSet();
+ ///
+ /// Default constructor. Protected due to required properties, but present because EF needs it.
+ ///
+ protected MusicAlbum() : base()
+ {
+ MusicAlbumMetadata = new HashSet();
+ Tracks = new HashSet