I have 3 csprojs in my web application:
- UI.Web
- Bll.Web
- DAL.Web
UI.Web references Bll.Web and Bll.Web references DAL.Web.
DAL.Web is very simple and only contains methods like:
GetDataTableFromSP
GetScalarFromSP
ExecuteScalarFromSP
I reverse engineered my DB using EF4 and also used the Self-Tracking Entities template. Now I am left with 3 files:
- Model.Context.tt
- Model.tt
- Model.edmx
My question is, within my project structure, where do I put these so that I maintain my n-tier approach?
Thanks!