If I am creating web applications using ASP.NET and Silverlight is nowhere in the future and there’s no need to expose data to third party services (eg, no oData needed), are there any advantages of using WCF Data Services over the traditional ADO.NET methods we’ve been using over the years?
If I am creating web applications using ASP.NET and Silverlight is nowhere in the
Share
Except for the learning experience – not really.
I would choose to use something like WCF Data Services if:
Since you seem to explicitly rule out all of these, I don’t really see much benefit. But it might just be a good learning experience to stay on top of your game!
Plus, even if you’re using WCF Data Services, that service must somehow read that data and provide it – so you’ll have to do some ADO.NET stuff (possibly with the help of an ORM) here anyway. The WCF Data Service only adds complexity and code to maintain.
So if you have limited resources (time, money, your own energy): focus on making your current ADO.NET access as perfect as possible (e.g. using Linq-to-SQL, Entity Framework or whatever).
If you have unlimited resources – try both ways and compare and judge for yourself 🙂