如何将数据库表放入 MVC 模型中
我是 MVC 开发新手,对如何构建模型有一些疑问。我不知道是否必须按照数据库表或其他方式构建它们。
例如,我有这 5 个表:
- 域
- 类别_域
- 国家_域
- 类别
- 国家
我如何构建模型以在这些数据库表中执行操作。我应该为这些表中的每一个构建 SQL 命令来插入、删除和更新,还是应该做除此之外的其他事情?
抱歉,如果我解释得不好。
I'm new in developing in MVC and I have some doubts in how to build the Models. I don't know if I must build them in terms of Database Tables or in other terms.
I have for example this 5 tables:
- Domain
- Category_Domains
- Countries_Domains
- Categories
- Countries
How can i Build a Models to do actions in these Database Tables. Should I built the SQL commands to Insert, Delete and Update for each one of these Tables or I should do other thing than this?
Sorry if I not explain well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能给你的最好建议是研究实体框架。使用此框架,您可以创建与 SQL 数据库的数据连接,该框架将根据您的表结构(包括关系)创建模型。
这样做将确保您的数据库正确建模并始终保持同步
The best advice I can give you is to look into the entity framework. Using this framework, you can create a data connection to your SQL database and the framework will create your model based on your table structure, including relationships.
Doing this will ensure your database is modelled correctly and kept in sync at all times