AngularJS CRUD operations with .NET WebAPI simple example
Server: (WebAPI)
- Entity Framework (Code First with Migrations)
- AutoMapper NuGet: AutoMapper
- AutoFac (Dependency Injection) NuGet: Autofac.WebApi2
- CORS NuGet: Microsoft.AspNet.WebApi.Cors
Client: (AngularJS)
- bootstrap(Style)
- ngRoute(Routing) NuGet: AngularJS.Route
- ui.bootstrap(Datepicker Calendar) NuGet: Angular.UI.Bootstrap
- ngFileUpload(Upload and download files (images) to and from the server) NuGet: angular-file-upload
- toastr(Notifications) NuGet: toastr
To have the database in Sql Server:
- In Visual Studio, click on Tools -> NuGet Package Manager -> Package Manager Console.
- Select WebAPI in Default project dropdownlist.
- Type update-database.
Screenshots:
- Create
- Read
- Update
- Delete



