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.
我正在学习MVC。在本教程中,实体框架用于“模型”部分。我习惯于编程中的 OOP。所以,我想使用自定义对象而不是实体框架。有可能吗?
对不起,如果这是一个愚蠢的问题。
一个 mvc 动作在视图中注入它想要的东西。
return View("test");
剃刀视图可以显示注入其中的任何内容。
<body>@Model</body>
有可能吗?
当然,MVC 绝不会绑定到实体框架。甚至建议创建自己的 ViewModel,而不是为此使用实体类。
是的,您可以使用自定义对象作为模型,但您还需要一个层来访问真实数据。
EF 允许您创建模型并提供访问/修改数据的框架。