views:

218

answers:

1

Project Scenario

Technology : Dotnetnuke (Approx. 100 - 150 screens)

Data Architecture : LINQ to SQL selected with Codesmith PLINQO

Modules are customized, so its fine if it does not work with Oracle or MySQL as backend

So, the question is

Due to selection of LINQ to SQL in place of 3-tier provider model, it will create any issue ?

is it recommended to use dynamic data website in this case ?

+2  A: 

We used Linq to SQL for a n-tier system and it was magical, a bit of a learning curve but the pain is worth the gain.

However, I recommend you look into Entity Framework, as Linq to SQL is being deprecated and replaced by EF. We found that out the hard way. Linq to SQL is still going to exist, but no new features will be created for it and will eventually stop being supported.

EF has a lot of the same core principles however, so it is definately worth learning.

Hope this helps,

Kyle

Kyle Rozendo