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

Containerizing N-Tier MVC .Net Framework Application with Docker

Microservice Architecture and Containerization using docker are the latest buzzword in the software industry. But, Many people including me in the software industry developing big monolithic enterprise applications using .Net Framework for many years have very limited scope of applying these concepts into existing applications. Because, its not easy to break enterprise monolithic application into micro … Continue reading Containerizing N-Tier MVC .Net Framework Application with Docker

Generate an exe for the .Net Core console apps: .Net Core Quick posts part 5

You can find all .Net core posts here. In this quick post, we will see how to create an exe from .Net Core console application. Little background When we create a console application using .Net Core, you will notice that the exe would not be created when you build the application. Let us quickly create an application … Continue reading Generate an exe for the .Net Core console apps: .Net Core Quick posts part 5

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

Disabling parts of ASP.NET Core Identity

Re-blogged from Damien’s site.

Software Engineering

This article shows how to disable parts of ASP.NET Core Identity in a Web Application. In the ASP.NET Core Identity, the Identiy UI is deployed as part of the NuGet package. So per default everything is enabled and you have to opt-out, unlike the older versions which was opt-in. If you are not careful, this could cause security holes in your application. It is important that you disable the parts of Identity which you do not use!

To demonstrate this, the register process will be disabled. Sometimes, the users are imported or defined using an existing application/process, and the application should not be allowed to register users, so it needs to be deactivated. Per default, it is added and needs to be removed. The default Register Razor Page can be reached at the following URL:

“App base URL”/Account/Register

To turn this off, you need to scaffolding the Razor Page into…

View original post 96 more words

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

Database migration for .Net Core projects

You can find my all .Net core posts here. I am adding new post after a long break because I recently joined a new company AttachingIt. It is an awesome security related company and now-on wards I am going to work on this awesome product. In this post, I will explain how to do the Database migration for … Continue reading Database migration for .Net Core projects

Continuous Integration(CI) for .Net Core projects: .Net Core CLI Part III

You can find my all .Net core posts here. This is the 3rd post on .Net Core CLI commands. You can find first 2 posts below: Guide to create and run .Net Core application using CLI Tools: .Net Core CLI Part I Guide to Create and Publish Nuget packages using .Net Core CLI: .Net Core CLI Part II In this … Continue reading Continuous Integration(CI) for .Net Core projects: .Net Core CLI Part III

Guide to Create and Publish Nuget packages using .Net Core CLI: .Net Core CLI Part II

You can find my all .Net core posts here. In my previous post on the CLI tools, I explained how to create, restore, clean, build, run .Net Core application using latest CLI commands. You can find the post here. In this post, we will see how to create and publish Nuget packages using CLI commands. What is a Nuget … Continue reading Guide to Create and Publish Nuget packages using .Net Core CLI: .Net Core CLI Part II

Guide to create and run .Net Core application using CLI Tools: .Net Core CLI Part I

.Net Core provides a new cross-platform tool-chain for developing .NET applications which are nothing but the .Net CLI tools. CLI tools are really powerful and easy to use, as a developer we should know how to use these commands. These commands would be very useful if you are looking for creating Continuous Integration(CI) and\or Continuous Deployment(CD). … Continue reading Guide to create and run .Net Core application using CLI Tools: .Net Core CLI Part I