Skip to main content

Add Authentication to Angular 7 App using ASP.NET Core 3

.NET Core 3.0 Preview 3 was released last month, and it includes a bunch of new updates to ASP.NET Core. There are a couple of updates related to Angular. In this new update, the default Angular template is updated to Angular 7 and the option to add authentication while creating an Angular or React application. In this post, we’ll see how to create an Angular 7 app with Visual Studio 2019 and add authentication to Angular 7 App using ASP.NET Core 3.
Read More

ASP.NET Core 3.0 App with .NET Core 3.0 preview 2 release

Earlier I posted about creating First ASP.NET Core 3.0 App using Visual Studio 2019 Preview 1 release. ASP.NET Core 3.0 is a major release and has some code breaking changes. However, .NET Core 3.0 preview 1 release didn’t offer any insight of the new features. Recently, .NET Core 3.0 preview 2 came out and now we can get a feel of ASP.NET Core 3.0 new features. In this post, let’s create a new ASP.NET Core 3.0 app with .NET Core 3.0 preview 2 release and take a look at the new features. Read More

How You Can Create a .NET Core Application Using Entity Framework Core with Oracle

While Entity Framework support is already a quite common feature of different data provider products, support for Entity Framework Core is not yet as widely available. Especially if it concerns Entity Framework Core on .NET Core. Today I will tell you about an ADO.NET provider for Oracle that provides such features – dotConnect for Oracle. dotConnect for Oracle is a product of Devart company with a many-years history of development, support for Oracle versions, starting from 7.3 to the latest 18c. In this post, we’ll see how you can create a .NET Core application using Entity Framework Core with Oracle. Read More

Creating First ASP.NET Core 3.0 App with Visual Studio 2019 Preview

The first public preview of Visual Studio 2019 and .NET Core 3.0 is out. I expect both to be a major release with lots of new features and some code breaking changes. The biggest change with .NET Core 3.0 is support for desktop applications and ASP.NET Core 3.0 will only run on .NET Core. In this post, we’ll see how to install .NET Core 3.0 and Visual Studio 2019 preview, new features of visual studio 2019 and also creating first ASP.NET Core 3.0 app with Visual Studio 2019. Read More

Create a React Redux App with Visual Studio 2017 and ASP.NET Core 2.2

Redux is a predictable state container for JavaScript apps. It’s a mechanism to store and share the data on the client side within the application. Redux is generally used in a combination of React, but it’s not tied to React. Earlier I posted about creating a React App with Visual Studio 2017 and ASP.NET Core 2.2 and in the same post, I mentioned that there are 2 pre-defined templates for creating a React application. The React.js template creates a react application, where the React.js And Redux template has Redux configured for you. In this post, find out how to create a React Redux App with Visual Studio 2017 and ASP.NET Core 2.2. Read More

Create a React App with Visual Studio 2017 and ASP.NET Core 2.2

React is a component-based JavaScript library for building user interfaces. It lets you create the view layer from small and isolated pieces of code called components. Earlier, I posted about creating Angular 5, Angular 6 and Angular 7 apps with Visual Studio 2017 and ASP.NET Core. Similarly, the ASP.NET Core SPA templates allow you to create a React App with Visual Studio 2017 and ASP.NET Core 2.2 without installing any third-party extensions or templates.
Read More

How to create an Angular 7 app with Visual Studio 2017

Last week, I posted a guide on upgrading Angular 6 app to Angular 7. But, what if you wish to create Angular 7 app from scratch with VS 2017? At the time of writing this post, default ASP.NET Core SPA templates allow you to create Angular 5/6 based app with Visual Studio without installing any third-party extensions or templates. This post talks about how to create an Angular 7 App with Visual Studio 2017. Read More