17

...or are things getting more complicated?

It seems to me that you need to know a lot of stuff to 'properly' develop an MS web app these days. In the bad old days when we didn't know any better we had database tables, ASP.NET, ADO.NET and you constructed a web app using relatively simple concepts.

These days there seems to be a lot of framework around to 'help' you do it 'right', but I'm not convinced this makes it all easier and better. I've got a feeling I'll be in a pretty small minority with this sentiment, but is there anyone else out there who thinks that things have gone a bit mad?

5 Answers5

17

All those things are optional, use them if they're helpful, don't if they're not. It's as simple as that. You can certainly write good/proper web apps w/o any of those acronyms in your solution.

Personally, I tend to find MVC to be a pretty lightweight and easy to use framework (much easier to get started on than webforms, imo). Likewise, LINQ provides a common way of querying anything; also good. EF and WCF and I have had our disagreements, but when that's the case, I don't use 'em.

Paul
  • 3,347
9

No, not really. LINQ is the greatest thing since sliced bread when interacting with a database.

What you should remember is that these things are built on other things. LINQ is not adding to the number of things you need to know to develop an ASP.NET website, because now you don't need to know SQL. And LINQ is OO, which is far more in line with regular application development, which makes it a complete shitton easier to do than SQL, and much easier to integrate with C#.

If you don't think that LINQ is easier than SQL, perhaps you should post some examples of something that's harder in the new paradigms.

More importantly, previously websites had far less functionality. How are you going to make new websites that perform better, scale better and offer new functions in the same code?

DeadMG
  • 36,914
3

If the old concepts you mentioned didn't work any more, I would agree that would be mad, but the newer frameworks are alternatives. Blind acceptance would be mad. You need to justify. Personally, SQL in itself isn't a problem for me. Trying to add some of the functionality of modern websites, webforms isn't cutting it anymore.

I'm sure some classic ASP folks felt the same way about .NET, but few can continue to make that arguement. I build a couple of sites in classic ASP and would not go back.

JeffO
  • 36,956
2

"Gone a bit mad". That's exactly the way I'd describe a DataSet, ADO.NET, ASP.NET solution. :)

I agree there is a lot more to learn, but each of the frameworks you mention have made .NET development better.

0

I would say that this is a global problem which can affect pretty much every framework or (developer) platform. When new framework is released it looks usually small and compact, but as time goes on and new features/functionality/APIs are included (either by roadmap/request, new concepts/trends/technologies or simply by evolution) it gets "bloated". You started with "one way of doing things" and now there are more possibilities which you can choose from (and - you don't know/are not sure - which one to choose). It can be time consuming to learn new things, however they can offer you much more flexible/faster/better solutions to the same problems which were previously solved by limited set of options.

I once stumbled upon a funny quote - "all code turns into s#!t given enough time and hands" - which IMHO summarize why new stuff within existing frameworks should emerge to bring fresh ideas into action and do the evolution.

yojimbo87
  • 556