HN user

ubelt

7 karma
Posts2
Comments7
View on HN

I'm not generalizing but I know a lot of people who hate/won't use .Net mainly because it is a Microsoft product.

What I believe is good with .Net is the 3rd-party support (free or commercial). The Visual Studio tool is also very easy to use and ramps up your development.

iamelgringo,

Have you tried Data Access Application Blocks? We use them and we only need 1 line of code to read the database.

SqlHelper.ExecuteReader(strConnTxt, CommandType.Text, strSql);

Alternatively, you can use SqlHelper.ExecuteDataset.

We also use Code Generation software that builds all the CRUD methods automatically.