如何从普通实体迁移到自跟踪实体?

发布于 2024-10-08 20:05:44 字数 1431 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

千と千尋 2024-10-15 20:05:44

将现有 POCO 类的名称更改为您期望 EF 将生成的名称,以便更新您的引用。然后删除旧的 POCO 类并生成 EF 类然后编译您的解决方案

Change the namespces of your existing POCO classes to the one you expect EF will generate and so that your references will be updated.Then delete old POCO classes and generate EF classesThen compile your solution

神爱温柔 2024-10-15 20:05:44

我认为您所说的普通实体是指 POCO 的实体。您可能需要删除您编写或生成的 POCO 类,并将 edmx 文件的构建操作设置为 EntityDeploy。

希望这有帮助。

By plain entities i presume you mean POCO's. You probably need to delete the POCO classes u wrote or generated and set the build action of the edmx file to EntityDeploy.

Hope this helps.

铃予 2024-10-15 20:05:44

您只需删除您可能使用过的任何旧 T4(如果您使用过 POCO T4),然后从您的模型中添加新的自我跟踪 POCO T4。
工作应该足够了。

You just have to remove any old T4 you may have used (if you used POCO T4), and add new self tracking POCO T4 from your model.
It should be enough to work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文