Angular js and asp.net mvc 4 sample application

I am looking for an example application of angular js and asp.net mvc 4. I found some very good examples for angular js, but not so much for inserting, adding, deleting into the database. Does anyone have any examples?

+8
angularjs asp.net-mvc
source share
4 answers
+20
source share

Here is another tutorial on integrating Angular.js and ASP.NET MVC5 ( http://xombe.com/2014/02/17/combine-angular-js-with-asp-net-mvc/ ). Project files do not have INSERT / ADD / DELETE for the database, but demonstrate the basic concept of transferring the model to Angular.js, updating the model from the controller and having Angular.js update the view,

Note I did not know about Breeze.js. I am going to test this as follows :-) Sounds like it might be great.

+1
source share

Angular is a client technology, therefore it does not have direct access to the database, and also uses WebAPI or other REST services, including cloud databases, etc. Also ASP.NET MVC is not a good choice for Angular - Angular uses its own routing and template system, so web pages are more applicable. John Papa has published a number of guides on his website . Also see the TodoMVC project . This is not exactly what you are looking for, but a good point to start.

0
source share

What you need is a web UI tutorial.

Look for tutorials for REST web APIs using the Entity Framework. After the tutorial, you can easily create your own integration.

-one
source share

All Articles