This commit is contained in:
@@ -181,7 +181,7 @@ namespace VEPROMS.CSLA.Library
|
||||
set
|
||||
{
|
||||
CanWriteProperty("MyFormat", true);
|
||||
if (_MyFormat != value)
|
||||
if ((_MyFormat == null ? _FormatID : (int?)_MyFormat.FormatID) != (value == null ? null : (int?)value.FormatID))
|
||||
{
|
||||
_MyFormat = value;
|
||||
_FormatID = (value == null ? null : (int?)value.FormatID);
|
||||
@@ -312,6 +312,16 @@ namespace VEPROMS.CSLA.Library
|
||||
return _Folder_FormatID;
|
||||
}
|
||||
}
|
||||
private double? _Folder_ManualOrder;
|
||||
public double? Folder_ManualOrder
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("Folder_ManualOrder", true);
|
||||
return _Folder_ManualOrder;
|
||||
}
|
||||
}
|
||||
private string _Folder_Config = string.Empty;
|
||||
public string Folder_Config
|
||||
{
|
||||
@@ -551,6 +561,7 @@ namespace VEPROMS.CSLA.Library
|
||||
_Folder_Title = dr.GetString("Folder_Title");
|
||||
_Folder_ShortName = dr.GetString("Folder_ShortName");
|
||||
_Folder_FormatID = (int?)dr.GetValue("Folder_FormatID");
|
||||
_Folder_ManualOrder = (double?)dr.GetValue("Folder_ManualOrder");
|
||||
_Folder_Config = dr.GetString("Folder_Config");
|
||||
_Folder_DTS = dr.GetDateTime("Folder_DTS");
|
||||
_Folder_UsrID = dr.GetString("Folder_UsrID");
|
||||
|
Reference in New Issue
Block a user