我们可以将Linq与sql server的View一起使用吗?
根据我的理解,视图可以提高性能,我打算在数据库中使用视图,并且因为我的数据库很大,所以我想为不同的查询创建视图。有没有办法访问 .Net Windows 应用程序中的视图,或者我们可以将 LINQ 与视图一起使用吗?在.Net中使用View的确切方法是什么,以便我可以提高性能?我正在编写一个 C# 桌面应用程序。
As per my understanding Views could improve performance and I intend to use Views in my database and because my database is huge, I want to create the views for different queries. Is there any way to access the Views in .Net Windows applications or can we use LINQ with Views? What is the exact way to use View in .Net, so that i can improve performance? I am writing a C# desktop application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
“我想在 sql server 数据库中创建一个必须具有Where子句的视图。当我将其拖到.Net dbml文件中,并使用一些where时,必须询问参数。这可能吗?”
我认为您是在询问在调用视图时是否可以将“where”参数传递给视图。这是不可能的,但您可以将参数传递给存储过程。此外,您的存储过程可以查询视图并使用参数对其进行过滤。下面是一个示例:
视图:名为“PersonView” - 为您提供所有内容(无Where子句)
存储过程:名为“spPersonQuery” - 执行您的Where子句
然后您可以将存储过程拖到DBML文件中,当您调用它时,您将传入 int 参数“orgID”。
"I want to create a view in sql server database that must have the Where clause. and when i will drag it to .Net dbml file, and use some where then must ask the parameter. can this possible."
I think you are asking if you can pass a "where" parameter to the View when it is called. This is not possible, but you can pass parameters to a Stored Procedure. Also, your stored procedure can query the View and use the param to filter it down. Here's an example:
VIEW: named "PersonView" -- gives you everything (no Where clause)
STORED PROCEDURE: named "spPersonQuery" -- does your Where clause
You can then drag your Stored Procedure into your DBML file and when you call it, you will pass in the int param "orgID".
是的,只需将 Visual Studio 中的服务器资源管理器中的视图拖到 linq2sql 数据库模型上即可。
Yes, just drag the View from server explorer in visual studio onto your linq2sql database model.
是的,您可以在 .NET 应用程序中使用视图。您可以像使用表格一样使用它。
例如:
Yes, you can use a view in a .NET application. You use it in the same way you would use a table.
For example: