Tag Archives: Stored Procedure

How to use Stored Procedures in Entity Framework

In the current project we are using Entity Framework for database operations. Entity Framework comes with Visual Studio SP1, which helps you to map tables / views / procedures as entities in C# / VB Code. You can find more … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net MVC, SQL Server, Windows Forms | Tagged , , , , | 3 Comments

Implementing Paging in SQL Server 2005 Stored Procedures

Normally for implementing Paging in Grid View, we enable the Paging property in GridView and will write code in the PageIndex Changed event. But the problem with this approach is it will fetch all the data from Database for Paging, … Continue reading

Posted in .Net, SQL Server | Tagged , , , | Leave a comment