如何将数据库表放入 MVC 模型中

发布于 2024-10-14 23:52:25 字数 249 浏览 2 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(1

末が日狂欢 2024-10-21 23:52:25

我能给你的最好建议是研究实体框架。使用此框架,您可以创建与 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

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