In this post, we are going to implement dynamic highchart with Angular6 and Asp.net Core. In the previous article we have explore how a Single Page Application (SPA) sample can be put together using ASP.Net Core & Angular from scratch. Based on previous post this article is extended to implement charting. We are going to modify/extend existing sample […]
Category: Entity Framework (EF)
Single Page Application Using ASP.Net Core-AngularJs
In this post we are going to create a Single Page Application (SPA) with AngularJS and ASP.Net Core. We will use Angular-UI-Router for our application routing instead of MVC routing. If you are new to ASP.Net Core, get a complete startup overview here: https://shashangka.com/2016/11/26/net-core-startup/ Prerequisites: Before getting started make sure development environment is prepared properly. These are listed […]
User Specific Notifications Using ASP.NET MVC & SignalR
In this post we are going to explore how to implement user based notification using ASP.Net MVC & SignalR. In case if you are new to SignalR the please get some basics here: https://docs.microsoft.com/en-us/aspnet/signalr/overview/getting-started/introduction-to-signalr Why SignalR? SignalR provides “real-time” web functionality in our application using Javascript function call in client browser from server (Server Sent Events). It has […]
Scaffolding ASP.Net Core MVC
In this post we are going to explore how to create model based on existing database (Db-First), with the help of Entityframework Core Command then learn how to generate Controller & Views using Scaffolding (Interface & Code-Generator Command) based on model.