SQLite net расширения textblob не работает - PullRequest
0 голосов
/ 15 апреля 2020

У меня есть класс, подобный

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 с дочерними элементами, но текстовые объекты не попадают в базу данных.

Есть идеи?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...