views:

45

answers:

3

Hi everyone!I have a web application where i need to use entity frame work.Actually i came to know that Entity follows 3 layered model.So is it mandatory to use again 3 layered model while using entity?Can any give your valuable idea's and link's regarding this.

+2  A: 

Entity framework will create a DAL only. If you want to remove the Business logic layer you can.But working in a 3 Tier is a better option,which is easy to maintain

anishmarokey
ok.For Business layer we have to design
programmer4programming
yes for Business Logic you need to design. Where you write all the business logic
anishmarokey
A: 

No, you can do pretty much what you want with it.

With the current info you posted and seem to be handling, its very hard to say anything else on it.

I suggest you look more into what you are going to do, and if you are concerned with the design aspects try to get someone involved in your project that can help you start on the right track.

eglasius
+1  A: 

ASP.NET contains EntityDataSource so you can talk to EntityFramework directly from ASP.NET markup without any business layer. Than it is more about "layering" and what you call a layer. Btw. there is difference between layer and tier. Layer is logical and tier is physical (different process or computer).

Ladislav Mrnka