且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在C#Windows应用程序中从SQL Server 2005调用视图

更新时间:2023-02-06 23:27:21

您不能直接从前端调用Sql View.您应该为此使用一个过程.在存储过程中执行视图,并从前端调用该存储过程.

--Amit
You cannot call a Sql View directly from front-end. You should use a procedure for that. Execute your view inside your stored procedure and call that stored procedure from front-end.

--Amit