mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 04:48:27 +01:00
Clean up generated code
This commit is contained in:
@@ -1,15 +1,3 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
@@ -21,107 +9,110 @@ using System.Runtime.CompilerServices;
|
||||
|
||||
namespace Jellyfin.Data.Entities
|
||||
{
|
||||
public partial class Track: global::Jellyfin.Data.Entities.LibraryItem
|
||||
{
|
||||
partial void Init();
|
||||
[Table("Track")]
|
||||
public partial class Track : LibraryItem
|
||||
{
|
||||
partial void Init();
|
||||
|
||||
/// <summary>
|
||||
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
||||
/// </summary>
|
||||
protected Track(): 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.
|
||||
/// <summary>
|
||||
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
||||
/// </summary>
|
||||
protected Track() : 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<global::Jellyfin.Data.Entities.Release>();
|
||||
TrackMetadata = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.TrackMetadata>();
|
||||
Releases = new HashSet<Release>();
|
||||
TrackMetadata = new HashSet<TrackMetadata>();
|
||||
|
||||
Init();
|
||||
}
|
||||
Init();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
|
||||
/// </summary>
|
||||
public static Track CreateTrackUnsafe()
|
||||
{
|
||||
return new Track();
|
||||
}
|
||||
/// <summary>
|
||||
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
|
||||
/// </summary>
|
||||
public static Track CreateTrackUnsafe()
|
||||
{
|
||||
return new Track();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
/// <param name="_musicalbum0"></param>
|
||||
public Track(Guid urlid, DateTime dateadded, global::Jellyfin.Data.Entities.MusicAlbum _musicalbum0)
|
||||
{
|
||||
// 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.
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
/// <param name="_musicalbum0"></param>
|
||||
public Track(Guid urlid, DateTime dateadded, MusicAlbum _musicalbum0)
|
||||
{
|
||||
// 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 (_musicalbum0 == null) throw new ArgumentNullException(nameof(_musicalbum0));
|
||||
_musicalbum0.Tracks.Add(this);
|
||||
if (_musicalbum0 == null) throw new ArgumentNullException(nameof(_musicalbum0));
|
||||
_musicalbum0.Tracks.Add(this);
|
||||
|
||||
this.Releases = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.Release>();
|
||||
this.TrackMetadata = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.TrackMetadata>();
|
||||
this.Releases = new HashSet<Release>();
|
||||
this.TrackMetadata = new HashSet<TrackMetadata>();
|
||||
|
||||
Init();
|
||||
}
|
||||
Init();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Static create function (for use in LINQ queries, etc.)
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
/// <param name="_musicalbum0"></param>
|
||||
public static Track Create(Guid urlid, DateTime dateadded, global::Jellyfin.Data.Entities.MusicAlbum _musicalbum0)
|
||||
{
|
||||
return new Track(urlid, dateadded, _musicalbum0);
|
||||
}
|
||||
/// <summary>
|
||||
/// Static create function (for use in LINQ queries, etc.)
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
/// <param name="_musicalbum0"></param>
|
||||
public static Track Create(Guid urlid, DateTime dateadded, MusicAlbum _musicalbum0)
|
||||
{
|
||||
return new Track(urlid, dateadded, _musicalbum0);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* Properties
|
||||
*************************************************************************/
|
||||
/*************************************************************************
|
||||
* Properties
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for TrackNumber
|
||||
/// </summary>
|
||||
protected int? _TrackNumber;
|
||||
/// <summary>
|
||||
/// When provided in a partial class, allows value of TrackNumber to be changed before setting.
|
||||
/// </summary>
|
||||
partial void SetTrackNumber(int? oldValue, ref int? newValue);
|
||||
/// <summary>
|
||||
/// When provided in a partial class, allows value of TrackNumber to be changed before returning.
|
||||
/// </summary>
|
||||
partial void GetTrackNumber(ref int? result);
|
||||
/// <summary>
|
||||
/// Backing field for TrackNumber
|
||||
/// </summary>
|
||||
protected int? _TrackNumber;
|
||||
/// <summary>
|
||||
/// When provided in a partial class, allows value of TrackNumber to be changed before setting.
|
||||
/// </summary>
|
||||
partial void SetTrackNumber(int? oldValue, ref int? newValue);
|
||||
/// <summary>
|
||||
/// When provided in a partial class, allows value of TrackNumber to be changed before returning.
|
||||
/// </summary>
|
||||
partial void GetTrackNumber(ref int? result);
|
||||
|
||||
public int? TrackNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
int? value = _TrackNumber;
|
||||
GetTrackNumber(ref value);
|
||||
return (_TrackNumber = value);
|
||||
}
|
||||
set
|
||||
{
|
||||
int? oldValue = _TrackNumber;
|
||||
SetTrackNumber(oldValue, ref value);
|
||||
if (oldValue != value)
|
||||
public int? TrackNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
_TrackNumber = value;
|
||||
int? value = _TrackNumber;
|
||||
GetTrackNumber(ref value);
|
||||
return (_TrackNumber = value);
|
||||
}
|
||||
}
|
||||
}
|
||||
set
|
||||
{
|
||||
int? oldValue = _TrackNumber;
|
||||
SetTrackNumber(oldValue, ref value);
|
||||
if (oldValue != value)
|
||||
{
|
||||
_TrackNumber = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* Navigation properties
|
||||
*************************************************************************/
|
||||
/*************************************************************************
|
||||
* Navigation properties
|
||||
*************************************************************************/
|
||||
|
||||
public virtual ICollection<global::Jellyfin.Data.Entities.Release> Releases { get; protected set; }
|
||||
[ForeignKey("Release_Releases_Id")]
|
||||
public virtual ICollection<Release> Releases { get; protected set; }
|
||||
|
||||
public virtual ICollection<global::Jellyfin.Data.Entities.TrackMetadata> TrackMetadata { get; protected set; }
|
||||
[ForeignKey("TrackMetadata_TrackMetadata_Id")]
|
||||
public virtual ICollection<TrackMetadata> TrackMetadata { get; protected set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user