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.
Entity Framework 与 NPoco 的区别,哪一个最好?
Entity 是一个功能丰富的解决方案,而 NPoco 是一个微型解决方案。实体在某些情况下可能会变慢,因为它在幕后做了很多事情。我喜欢的一个功能是 NPoco 不会给你的代码优先迁移(尽管我相信有一个 nuget 包可以给你迁移)。Entity 基本上会查看您的模型并根据您的模型和更改创建和更新您的数据库。NPoco 作为一个微型 ORM,其性能(据我所知)通常比 Entity 更快,因为它提供的一些功能。