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.
如何从模型优先方法转移到实体框架开发的代码优先方法?我需要它来启用 EF 迁移。
尝试打开您的 Model First 设计并右键单击白色区域。选择添加代码生成项。这适用于 EF 4.1 及更高版本。在代码下选择“ADO.Net DbContext Generator.
这将从您的模型创建类文件,就像您首先使用代码一样。只需创建您自己的上下文和(可选)初始化程序,就好像您首先在代码中工作一样。将您的类文件移动到类库中可能是个好主意,这样如果您从模型重新生成,您的更改就不会丢失。