如何在aspx页面上访问多个数据库表
我正在创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
视图/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.
您可以编写多个 linq 查询来访问所需的表。
You can write multiple linq querys that access the tables you want.