2019-06-01 20:40:01 +00:00
|
|
|
using System;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
namespace Jellyfin.Data.Entities
|
|
|
|
{
|
2020-05-02 21:56:05 +00:00
|
|
|
public partial class MediaFileStream
|
|
|
|
{
|
|
|
|
partial void Init();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
|
|
|
/// </summary>
|
|
|
|
protected MediaFileStream()
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
|
|
|
|
/// </summary>
|
|
|
|
public static MediaFileStream CreateMediaFileStreamUnsafe()
|
|
|
|
{
|
|
|
|
return new MediaFileStream();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Public constructor with required data.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="streamnumber"></param>
|
|
|
|
/// <param name="_mediafile0"></param>
|
|
|
|
public MediaFileStream(int streamnumber, MediaFile _mediafile0)
|
|
|
|
{
|
|
|
|
this.StreamNumber = streamnumber;
|
|
|
|
|
2020-06-20 08:35:29 +00:00
|
|
|
if (_mediafile0 == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException(nameof(_mediafile0));
|
|
|
|
}
|
2020-05-02 21:56:05 +00:00
|
|
|
|
2020-06-20 08:35:29 +00:00
|
|
|
_mediafile0.MediaFileStreams.Add(this);
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Static create function (for use in LINQ queries, etc.)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="streamnumber"></param>
|
|
|
|
/// <param name="_mediafile0"></param>
|
|
|
|
public static MediaFileStream Create(int streamnumber, MediaFile _mediafile0)
|
|
|
|
{
|
|
|
|
return new MediaFileStream(streamnumber, _mediafile0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* Properties
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Backing field for Id.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
internal int _Id;
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of Id to be changed before setting.
|
|
|
|
/// </summary>
|
|
|
|
partial void SetId(int oldValue, ref int newValue);
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of Id to be changed before returning.
|
|
|
|
/// </summary>
|
|
|
|
partial void GetId(ref int result);
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Identity, Indexed, Required.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
[Key]
|
|
|
|
[Required]
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
|
|
public int Id
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
int value = _Id;
|
|
|
|
GetId(ref value);
|
2020-06-19 09:57:37 +00:00
|
|
|
return _Id = value;
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
protected set
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-05-02 21:56:05 +00:00
|
|
|
int oldValue = _Id;
|
|
|
|
SetId(oldValue, ref value);
|
|
|
|
if (oldValue != value)
|
|
|
|
{
|
|
|
|
_Id = value;
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Backing field for StreamNumber.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
protected int _StreamNumber;
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of StreamNumber to be changed before setting.
|
|
|
|
/// </summary>
|
|
|
|
partial void SetStreamNumber(int oldValue, ref int newValue);
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of StreamNumber to be changed before returning.
|
|
|
|
/// </summary>
|
|
|
|
partial void GetStreamNumber(ref int result);
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Required.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
public int StreamNumber
|
|
|
|
{
|
|
|
|
get
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-05-02 21:56:05 +00:00
|
|
|
int value = _StreamNumber;
|
|
|
|
GetStreamNumber(ref value);
|
2020-06-19 09:57:37 +00:00
|
|
|
return _StreamNumber = value;
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
set
|
|
|
|
{
|
|
|
|
int oldValue = _StreamNumber;
|
|
|
|
SetStreamNumber(oldValue, ref value);
|
|
|
|
if (oldValue != value)
|
|
|
|
{
|
|
|
|
_StreamNumber = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Required, ConcurrenyToken.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
[ConcurrencyCheck]
|
|
|
|
[Required]
|
|
|
|
public uint RowVersion { get; set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
public void OnSavingChanges()
|
|
|
|
{
|
|
|
|
RowVersion++;
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/*************************************************************************
|
|
|
|
* Navigation properties
|
|
|
|
*************************************************************************/
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|
|
|
|
|