using System; using System.ComponentModel.DataAnnotations; namespace Jellyfin.Data.Entities { public partial class Artwork { partial void 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(); } /// /// 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; if (_metadata0 == null) throw new ArgumentNullException(nameof(_metadata0)); _metadata0.Artwork.Add(this); if (_personrole1 == null) throw new ArgumentNullException(nameof(_personrole1)); _personrole1.Artwork = this; Init(); } /// /// 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 *************************************************************************/ /// /// 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) { _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) { _Path = value; } } } /// /// 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); /// /// 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 *************************************************************************/ } }