На объектный объект нельзя ссылаться несколькими экземплярами IEntityChangeTracker - PullRequest
0 голосов
/ 27 сентября 2019

Проблема при сохранении данных:

На объект сущности нельзя ссылаться несколькими экземплярами IEntityChangeTracker

Код:

public class Transactions
{
    [Key]
    public long Id { get; set; }
    public string Url { set; get; }
    public bool? Showsender { get; set; }
    public virtual PaymentStatus PaymentStatusItem { get; set; }
    public string Trackingnumber { set; get; }
    public DateTime? Executiondatetime { set; get; }
    public virtual Account SourceAccount { set; get; }
    public virtual Account DestinationAccount { set; get; }
    public Decimal? Amount { set; get; }
    public string Currency { set; get; }
    public string Type { set; get; }
    public string Status { set; get; }
    public string Description { set; get; }
    public decimal? CurrentBalance { get; set; }
    public decimal? Balance { get; set; }
    public virtual TransactionType TransactionTypeItem { get; set; }
    public virtual  Account DestinationAccountItem { get; set; }
    public virtual Account SourceAccountItem { get; set; }
}

Iпопытался, но я не смог найти решение этой проблемы.

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