What are the standard practices for database access in .net?
Posted
by
Gulshan
on Programmers
See other posts from Programmers
or by Gulshan
Published on 2011-02-21T16:08:14Z
Indexed on
2011/02/22
23:33 UTC
Read the original article
Hit count: 336
I have seen weird database access practices in .net. I have seen stored procedures for every database tasks. I have seen every database property name is preceded by it's table name. I have seen fully separate layer/.dll for very few or no business logic. I have seen along with ORMs, there are separate data access layer playing the same role. And with them, I have always heard- "These are the standards you have to maintain".
So, what are the real standards for data access in .net? What are the rules you follow?
© Programmers or respective owner