юзера
public class UserProfile
{
[Key] public int Id { get; set; }
public Guid UserId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public byte[] ProfilePicture { get; set; }
public virtual IQueryable<UserTaskEntity> Tasks { get; set; }
}
И есть список сущность задачи юзера:
public class UserTaskEntity
{
[Key] public int Id { get; set; }
public Guid AssigneeUserId { get; set; }
public UserProfile AssigneeUserProfile { get; set; }
public Guid CompletedByUserId { get; set; }
public UserProfile CompletedByUserProfile { get; set; }
public DateTime CreatedOn { get; set; }
public string Description { get; set; }
public DateTime DueOn { get; set; }
public Guid OwnerUserId { get; set; }
public UserProfile OwnerUserProfile { get; set; }
public bool Status { get; set; }
public string Summary { get; set; }
}
Не получается смаппить, пишет такую ошибку: "Unable to determine the relationship represented by navigation 'UserProfile.Tasks' of type 'IQueryable<UserTaskEntity>'. Either manually configure the relationship, or ignore this property using the '[NotMapped]' attribute or by using 'EntityTypeBuilder.Ignore' in 'OnModelCreating'."
Можете направить в чём проблема? Пытался прогуглить, но если честно, то не очень понял как такое решить
У меня, получается в UserTaskEntity хранится 3 профиля User, а в профиле User может быть множество этих самых задач
Конфигурацию надо
ну так добавь в прфоиль юзера тоже три листа, так как у них три колеции будут. и два - явно задавай форейгн кеи через флюент
Что за прикол пропертю как IQueryable объявлять
Обсуждают сегодня