如何在aspx页面上访问多个数据库表

发布于 2024-10-10 12:32:45 字数 79 浏览 1 评论 0原文

我正在创建一个 MVC 网站,在其中我想通过 videodata.model 访问多个表,我该怎么做,或者可以通过另一种方式做到这一点。请帮助我

i m creating a mvc website in which i want to access more then one table through videwdata.model, how can i do like this or it can do by another way.plz help me

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

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

发布评论

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

评论(2

合约呢 2024-10-17 12:32:45

视图/ASPX 页面不应访问数据库。它们应该只使用控制器传递的视图模型。控制器都不应该了解有关数据库的任何信息。它使用一个服务层,从某个地方(在您的情况下是多个数据库)获取数据并返回一个模型对象。在服务的具体实现中,您可以从不同的数据库执行多个查询。

Views/ASPX pages shouldn't access database. They should only work with the view model which is passed by the controller. Neither the controller should know anything about a database. It uses a service layer which fetches data from somewhere (in your case multiple databases) and returns a model object. In the specific implementation of the service you could perform multiple queries from different databases.

淤浪 2024-10-17 12:32:45

您可以编写多个 linq 查询来访问所需的表。

You can write multiple linq querys that access the tables you want.

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