Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Visual Studio 中,我有一个实体模型。出于某种原因,其中一个实体在生成 DbContext 时显示为内部的,而不是公共的。
internal DbSet<Company> Companies { get; set; }
现在在属性窗口中,Access 属性设置为 Public。我试过来回切换它,每次运行后手动运行 T4 模板,它仍然是内部的。
有谁知道解决这个问题的方法?
所以在尝试了太久之后,我放弃并通过从数据库中提取模型来重建模型。我根本想不通这个。
确保在实体设计器中为该特定实体设置Access属性:Public
Access
Public