Reputation: 901
I have been assigned a project that needs to be implemented in a single page architecture. I have chosen ASP.NET Web API and Angular JS to start with. Here is the architecture of my application:
MyProject.Web: (ASP.NET Empty Application)
1). Entity Framework
2). ASP.NET Razor
3). ASP.NET Web Optimization
4). ASP.NET Web API
MyProject.DTO: (Class Library Project)
I am not sure if I should include reference to Entity Framework inside MyProject.web. What more refinements you suggest I should make?
EDIT I have made up my mind to use Entity Framework. With respect to Single Page Architecture, is it necessary to create a separate project (DAL) and reference Entity Framework DLL?
Thanks for reading.
Upvotes: 0
Views: 1846
Reputation: 2811
EntityFramework and BreezeJs may prove to be a lot of help. (depending on the scope/goal of your app)
Upvotes: 2