Is it possible to connect an existing local Database in Visual studio and generate the Data on Web with ASP.NET mvc Core?

I am currently learning Asp.net core Mvc (with vs 2019) and I have a question. I know I can create a model and with help of Scaffold create a local database through the program but I if I have already my own sample database, how I can insert it and show some details to web?
I’ve read about .Net framework and ADO.NET Entity Framework but this isnt working on Core version.
Followed Microsoft guides but they had only the “Seed Data” but i can’t make it work with my db Table.
Is there any way I can achive it? Or i have to recreate the project on .Net Framework ?

Install ReCaptcha to Umbraco V7

I would like to install ReCaptcha to our Umbraco Version 7. But I can’t seem to find the correct approach. Basically I want to add the captcha element inside my custom form (not the Umbraco Form). Is there a way to do it? It seems the approach of adding the Recaptcha is not the same as how you add it in PHP application. How should I do this in Umbraco?

How to authorize user’s role in client side of blazor wasm?

Environments Asp.Net Core 5.0 Blazor WebAssembly App (Asp.Net Core Hosting) Asp.Net Core Identity (with Identity Server 4) Problem I want to use Role-based authorization between Server side and Client side. I can login correctly and UserManager.IsInRoleAsync(user, “admin”) returns True in the Server side. But neither @attribute [Authorize(Roles = “admin”)] nor <AuthorizeView Roles=”admin”> doesn’t work in … Read more