Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ObjectGraphDataAnnotationsValidator - Blazor validation - Package manager

Tags:

blazor

which package manager must be installed to use ObjectGraphDataAnnotationsValidator ?

one of the links said to use

Microsoft.AspNetCore.Components.DataAnnotations.Validation

but there is no packager manager in the name

like image 397
Venkat Avatar asked Sep 03 '25 17:09

Venkat


1 Answers

That is the correct package. It is currently in pre-release (3.2.0-rc1.20223.4 at typing this)

If installing through Visual Studio NuGet screen check the "Include prerelease" option.

If using the Install-Package command from PowerShell specify the specific version using -Version

If using the dotnet CLI add --prerelease

like image 167
lmaydev Avatar answered Sep 07 '25 12:09

lmaydev