在Entity Framework Core documentation之后,我创建了以下实体:
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogId { get; set; }
public Blog Blog { get; set; }
}
运行Update-Database
时,我得到BlogId
和BlogId1
列。我不记得过去遇到过这个问题。是否不建议添加外键整数选项以允许更多查询选项?
在SQL中只有一个BlogId
列并且在我检索数据BlogId
和Blog.Id
的情况下,是否有任何可行的方法呢? / p>