У меня есть класс, подобный
publi c class Результат: INotifyPropertyChanged {#region Private Fields
private decimal faults;
private string placement;
private decimal score;
private decimal time;
#endregion Private Fields
#region Public Properties
public decimal Faults
{
get => this.faults;
set
{
this.faults = value;
this.NotifyPropertyChanged(nameof(this.Faults));
}
}
public string Placement
{
get => this.placement;
set
{
this.placement = value;
this.NotifyPropertyChanged(nameof(this.Placement));
}
}
public decimal Score
{
get => this.score;
set
{
this.score = value;
this.NotifyPropertyChanged(nameof(this.Score));
}
}
public decimal Time
{
get => this.time;
set
{
this.time = value;
this.NotifyPropertyChanged(nameof(this.Time));
}
}
У меня есть модель, использующая его с такими определениями:
'' '
[TextBlob ("BuriedResult"), Display (Order = 18, Name = "Buried Result")] publi c Result Buried {get => this.buried; set {this.buried = value; this.NotifyPropertyChanged (nameof (this.Buried)); }}
publi c string BuriedResult {get; set;}
Запись с использованием insert / update с дочерними элементами, но текстовые объекты не попадают в базу данных.
Есть идеи?