Angular 7 CRUD With ASP.NET Core: Step by step guide

It feels great to be back with this, my 18th article on Angular with the recently updated Angular 7. With this article, let's try to explore the Angular 7 features and get hands on with the CRUD operations using Angular 7, .NET Core, and Entity Framework Core. Let us first set the agenda for this … Continue reading Angular 7 CRUD With ASP.NET Core: Step by step guide

Creating an Angular 7 App with ASP.NET Core(Link to the post)

This is basically a link to the original post which is published on Telerik blogs. Finally, we have a new major version of Angular, which is version 7. The reason I use the word “finally” is not just because people were waiting for the latest major release of Angular, but also because there were quite … Continue reading Creating an Angular 7 App with ASP.NET Core(Link to the post)

Material Dashboard Using Angular 6

The whole code is here: materialdashboardangular6 Introduction Recently, Angular has released its latest version, Angular 6.0. In the latest version, they have focused more on toolchain, which provides us with a way to quick start our task easier, as well as some synchronized versions, such as Angular/core, Angular/compiler etc. With the release of Angular 6.0, one … Continue reading Material Dashboard Using Angular 6

Convert HTML To PDF Using Angular 6

htmltopdfng6 Introduction Sometimes, we need to provide the important data of an application in the form of a document like a PDF or an image. Those times we need to convert the HTML layout into the document, and here, we are going to do the same task to convert the HTML into PDF. I went through many … Continue reading Convert HTML To PDF Using Angular 6

Publish Angular 6 App To Firebase

Introduction We are going to learn to publish an Angular app using Firebase by following these steps. Publishing the site using Firebase is pretty easy. There are so many ways to publish our Angular app but Firebase makes it very simple and much faster to publish. Why we choose Firebase Firebase is a mobile and … Continue reading Publish Angular 6 App To Firebase

Handpicked Useful posts: Microsoft Tech stack

You can find all .Net core posts here. From today on wards, I am starting a series in which I will put together some useful posts from different people from the community. I would not be able to post the links everyday but I will hand pick all the useful links which are recently published and will … Continue reading Handpicked Useful posts: Microsoft Tech stack

KeyValue pipe in Angular 6.1

Note – You can find the source code of my sample application here. You can find all .Net core posts here. Angular 6.1 is recently announced with some interesting features. One of those features is, the key value pipe. Currently, there is not any straight forward way to iterate an object keys using ngfor in Angular I have seen … Continue reading KeyValue pipe in Angular 6.1

Create an application with Angular 6 and .Net Core: Step by step guide

Angular 6 is announced recently which has introduced some pretty awesome features. Let us see how to create Angular 6 application with and without using .Net Core SPA templates using Visual Studio 2017. There are more than one ways to create Angular 6 application with .Net Core, Let us see some of them. Make sure you … Continue reading Create an application with Angular 6 and .Net Core: Step by step guide

CRUD operation in Angular 4 : Angular 4 + Core 2.0 CRUD operation Part II

Note – You can find the source code of my sample application here. This post is the Part II post for Angular 4 + Core 2.0 CRUD operation. In my previous post(Part I), I explained how to do Database first in .Net Core 2.0 and we created Employee Web API by Database first approach which you can find … Continue reading CRUD operation in Angular 4 : Angular 4 + Core 2.0 CRUD operation Part II

Database first in .Net Core 2.0 step by step: Angular 4 + Core 2.0 CRUD operation Part I

Note - Part II(CRUD operation with Angular 4) of this post is here. In my previous post, I have explained how to create an Angular 5 application in Visual Studio 2017 using .Net Core templates which you can find here. In this series of posts, I will explain the Create, Read, Update, Delete(CRUD) using Angular … Continue reading Database first in .Net Core 2.0 step by step: Angular 4 + Core 2.0 CRUD operation Part I