Anup Vasudeva
Anup Vasudeva

Reputation: 901

Single Page application n-tier architecture using ASP.NET Web API and Angular

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

Answers (1)

Cory Silva
Cory Silva

Reputation: 2811

EntityFramework and BreezeJs may prove to be a lot of help. (depending on the scope/goal of your app)

Upvotes: 2

Related Questions