How to create Blazor components with custom JavaScript and CSS in the components library and properly consume them from WebAssembly application

Spread the love

A few days ago, the Blazor WebAssembly was officially released. And It’s a good reason to “taste” it. After watching a great “Modern Web UI with Blazor WebAssembly” demo on Microsoft Build 2020, a couple of ideas of cool Blazor components appeared in my mind. But such components should interact with some existing JavaScript libraries, […]

Using three.js with ASP.NET Core Blazor Server application

Spread the love

If you know C# and you want to create a cool modern web application… But you are too lazy have no desire or have no ability to learn any front-end things like JavaScript and JavaScript-based frameworks… Then probably the best choice for you is a new Microsoft framework called Blazor. As the official documentation says […]

How to add Webpack 4 to Asp.Net Core 3.1 MVC application step by step

Spread the love

There are not many examples of how to use a Webpack 4 on the front-end part of the ASP.NET Core 3.1 MVC application. One way is to use some specific middleware, but here I will use tools and pipelines that are conventional among the front-end developers:

NPM package manager to manage Node.js packages and to run scripts.
Javascript ES6-module syntax in the JavaScript code.
SASS to process styles.
Webpack 4 to bundle all things together.
and Visual Studio Code as an IDE.

Initial adding admin roles and users to the database for Role-based authorization in the ASP.NET Core 3.1 MVC applications

Spread the love

There is a really good article in the official ASP.NET Core documentation, which explains how to apply role restrictions to your controller actions. But after reading, it still was hard for me to get answers for a couple of questions:

How to seed initial records of the users and roles to the database?
And how to assign the new user to the default role?
Let’s find out what we can do.

Roman Simuta Blog