I’m a .NET web developer primarily who occasionally writes console applications to mine data, cleanup tasks, etc. Most of what I do winds up involving a database which I currently design via sql server management studio, using stored procedures, and query analyzer. I also create a lot of web services which are consumed via AJAX applications. Do these technologies really help you in speeding up development times? Do you still have to build the database or object code first?
I’m a .NET web developer primarily who occasionally writes console applications to mine data,
Share
Yes, familiarity with ORM’s–especially if they’re part of the framework, as LINQ2SQL and the Entity Framework are–will help you, even if you don’t use them. While ORM’s aren’t quite as handy when dealing in a stored-proc-only environment, they’re still nice to have and know how to use.