Showing posts with label Angularjs MVC. Show all posts
Showing posts with label Angularjs MVC. Show all posts

Angularjs routing asp.net mvc example

In this article I try to make a simple example about how to apply angularjs routing for asp.net mvc application. After this you can know how to use angularjs routing and angularjs routing for MVC. Beside that you can know how to rout with parameter, how to use ng-view.
agenda:
  • Add MVC application
  • Reference angularjs to MVC application
  • Add angularjs router and angularjs controller
  • Modify _Layout.cshtml and some mvc view to use angularjs.
  • Run and see result



Tutorial 32 - Angularjs MVC RESTful Web Service example


 Angularjs MVC RESTful Web Service example


This example shows how to create a simply web application using angularjs, mvc, RESTful
Web Service and ORM Entity Framework, I named it is “manage customer”.


List of features:

  •     List customer
  •     Edit customer
  •     Create new customer
  •     Delete customer


List of projects of “manage customer” application:

  1.     CustomerEntities (Entity Framework 6.0.0.0)
  2.     CustomerDAL (c# class library)
  3.     CustomerBLL (c# class library)
  4.     CustomerAPI (RESTful web service)
  5.     CustomerUI (AngularJs, MVC)


Notes that in customer UI will be no C# controller file, it is be replaced by angularjs script file. CustomerAPI will works with CustomerBLL to controll business logic, CustomerBLL reference data layer (CustomerDAL) and CustomerDAL works CustomerEntities to query data.
OK now we focus step by step to know it.


Step 1: Create database for “manage customer” application



Popular Posts