Implementing data access functionality

Deepak Ghule replied to Arjun Priyananth at 04-Jul-08 01:25

Implementing data access functionality is a core activity of most developers working with the .NET Framework, and the data access layers they build are an essential part of their applications. This article outlines five ideas to consider when building a data access layer with Visual Studio .NET and the .NET Framework. The tips include taking advantage of object-oriented techniques and the .NET Framework infrastructure by using base classes, making classes easily inheritable by following guidelines, and carefully examining your needs before deciding on a presentation method and external interface.
 Contents
Rule 1: Use Object-oriented Features
Rule 2: Adhere to the Design Guidelines
Rule 3: Take Advantage of the Infrastructure
Rule 4: Choose Your External Interface Carefully
Rule 5: Abstract .NET Framework Data Providers
Conclusion

If you're developing a data-centric application targeting the Microsoft® .NET Framework, you'll eventually need to create a data access layer (DAL). You probably know that there are benefits of building your code in the .NET Framework. Because it supports both implementation and interface inheritance, your code can be more reusable, especially by developers across your organization using different Framework-compliant languages. In this article, I'll present five rules for developing a DAL for your .NET Framework-based applications.


Refer these links

http://msdn.microsoft.com/en-us/magazine/cc188750.aspx
http://www.simple-talk.com/dotnet/.net-framework/.net-application-architecture-the-data-access-layer/


Click here to sign in and reply. You could earn money via our $500 contest just for being helpful.
  Data Access Layer Design - Arjun Priyananth  04-Jul-08 01:16 1:16:42 AM
      Implementing data access functionality - Deepak Ghule  04-Jul-08 01:25 1:25:00 AM
      Implementing data access functionality - Deepak Ghule  04-Jul-08 01:25 1:25:36 AM
      Implementing data access functionality - Deepak Ghule  04-Jul-08 01:25 1:25:45 AM
      Designing Data Access Layer - kalit sikka  04-Jul-08 02:05 2:05:18 AM
      Designing Data Access Layer - kalit sikka  04-Jul-08 02:07 2:07:49 AM
      DAL - santhosh kumar  04-Jul-08 02:21 2:21:11 AM
      Data Access Layer Design - Sanjay Verma  04-Jul-08 05:03 5:03:47 AM
View Posts