Self-Synchronized Data Access Layer
DRANK

IntroductionA data access layer can be an important part of a software application. Applications almost always need access to data and we should design separated layer for this purpose. Now we want to the use the generics in C# and design really power full data access layer for use in all applications without requiring any changes. for more information about Generics in C# you can follow of these links:Of course I should be noted, that all of these ideas have been implemented in the Entity Framework the best possible way, but the problem is that the Entity Framework an not be used with the some DBMS same as MS Access. And the other hand is aimed at showing the power of generics and facilities in programming.BackgroundAfter reading current version of this article you can read new version from here at new version I solved some problems same as sql injection and multiple database support. Data Access Layer OverviewIn this article we are introduce our data access layer architect follow of…

codeproject.com
Related Topics: C# Windows Microsoft Access