我有一個帶有可選用戶的Comment對象。在設置用戶時,我想用用戶的名字設置一個附加字段,這樣如果用戶以後被刪除,評論將可以被人識別。 public class Comment
{
public int Id { get; set; }
public int? CommenterId { get; set; }
public string CommenterNam
我有下面的代碼: public abstract class Entity
{
public virtual int Id { get; set; }
}
public class Category : Entity
{
public string Name { get; set; }
public virtual ICollection<Category>
這是我的標籤表,一個標籤可以有多個帖子: public class Tag
{
public int TagId { get; set; }
public string TagName { get; set; }
public IList<Post> Posts { get; set; }
}
這是我的Post類,一個崗位可以有多個標籤: public cla
我試圖使用實體框架7代碼首先發展創造了我的第一個移民,我收到以下錯誤創建遷移: The property 'Email' cannot be added to the entity type 'UserDTO' because a navigation property with the same name already exists on entity type 'UserDTO'. 我的環境