Getting Started Blazor Web Framework Create API is a video about how to Create, Read, Update and Delete data on SQL Server 2019. This is the last part of our Blazor series. In this video, we will add some basic validation to our data entry. We will use the System.ComponentModel.DataAnnotations.
Blazor is a free and open-source web framework that enables developers to create web apps using C# and HTML. It is being developed by Microsoft. Five different editions of Blazor apps have been announced.
Blazor Server: These apps are hosted on an ASP.NET Core server in ASP.NET Razor format. Remote clients to act as thin clients, meaning that the bulk of the processing load is on the server. The client’s web browser downloads a small page and updates its UI over a SignalR connection. Blazor Server was released as a part of .NET Core 3.
Blazor WebAssembly: Single-page apps that are downloaded to the client’s web browser before running. The size of the download is larger than for Blazor Server, depends on the app, and the processing is entirely done on the client hardware. However, this app type enjoys a rapid response time. As its name suggests, this client-side framework is written in WebAssembly, as opposed to JavaScript. A beta version of this framework has been made available, but its general availability is scheduled for May 2020.
Microsoft plans to release Blazor PWA and Blazor Hybrid editions. The former supports progressive web apps (PWA). The latter is a platform-native framework (as opposed to a web framework) but still renders the user
https://en.wikipedia.org/wiki/Blazor
Checkout our other post about Blazor on the following link
Getting Started Blazor Web Framework
Getting Started Blazor Web Framework Create API
Getting Started Blazor Web Framework Create Read Update Delete Part 1
Getting Started Blazor Web Framework Create Read Update Delete Part 2
Getting Started Blazor Web Framework Blazored Modal Confirm Delete
Please subscribe: DenRic Denise
Don’t forget to thumbs up or share this post, it will help us a lot.
The post Getting Started Blazor Web Framework Data Validation Using DataAnnotations appeared first on DenRic Denise.