Posts

Showing posts from July, 2018

ASP.NET Core – Using Highcharts With Angular 5

Image
Introduction In this article, we will create an online poll application using ASP.NET Core, Angular 5, and Entity Framework Core. Since this is the season of IPL in India, we will create an online poll for “Who is going to win IPL 2018?”. The poll results will be displayed as a column chart, that is created using Highcharts. We will use Visual Studio 2017 and SQL Server 2014. Take a look at the final application.   Prerequisites Install .NET Core 2.0.0 or above SDK from  here . Install the latest version of Visual Studio 2017 Community Edition from  here . Download and install the latest version of Node.js from  here . SQL Server 2008 or above. Source Code Before proceeding, I would recommend you to get the source code from  GitHub .  Creating Table We will store the team data in  IplTeams  table. Execute the following commands to create the table. CREATE TABLE IplTeams ( TeamId INTEGER ...