Plugin.Maui.MVVMExpress.Validation
0.4.0-preview
See the version list below for details.
dotnet add package Plugin.Maui.MVVMExpress.Validation --version 0.4.0-preview
NuGet\Install-Package Plugin.Maui.MVVMExpress.Validation -Version 0.4.0-preview
<PackageReference Include="Plugin.Maui.MVVMExpress.Validation" Version="0.4.0-preview" />
<PackageVersion Include="Plugin.Maui.MVVMExpress.Validation" Version="0.4.0-preview" />
<PackageReference Include="Plugin.Maui.MVVMExpress.Validation" />
paket add Plugin.Maui.MVVMExpress.Validation --version 0.4.0-preview
#r "nuget: Plugin.Maui.MVVMExpress.Validation, 0.4.0-preview"
#:package Plugin.Maui.MVVMExpress.Validation@0.4.0-preview
#addin nuget:?package=Plugin.Maui.MVVMExpress.Validation&version=0.4.0-preview&prerelease
#tool nuget:?package=Plugin.Maui.MVVMExpress.Validation&version=0.4.0-preview&prerelease
Plugin.Maui.MVVMExpress.Validation
DataAnnotations validation for MVVMExpress (IValidator).
public sealed class Product
{
[Required]
public string Name { get; set; } = "";
}
var summary = DataAnnotationsValidator.Instance.Validate(product);
if (!summary.IsValid)
await dialogs.AlertAsync("Invalid", summary.ToString());
FluentValidation stays an optional app-level adapter. This package is not trim-safe (reflection).
Install
dotnet add package Plugin.Maui.MVVMExpress.Validation --prerelease
Target framework: net10.0. Depends on Core. Version 0.4.0-preview.
Related
For XAML Validation.For on Entries, use Plugin.Maui.FormValidation (Niladri Padhy / MauiEssentials). Alternatives: FluentValidation, CommunityToolkit.Mvvm ObservableValidator.
Product docs: repository README. License: MIT.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Plugin.Maui.MVVMExpress.Core (>= 0.4.0-preview)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.1 | 28 | 9/6/2026 |
| 1.0.0 | 46 | 9/2/2026 |
| 0.6.1-preview | 43 | 9/1/2026 |
| 0.6.0-preview | 42 | 9/1/2026 |
| 0.5.0-preview | 44 | 9/1/2026 |
| 0.4.0-preview | 45 | 9/1/2026 |
| 0.3.0-preview | 39 | 9/1/2026 |
| 0.1.1-preview | 46 | 8/31/2026 |
| 0.1.0-preview | 51 | 8/31/2026 |
0.4.0-preview: page host, URI stack, dictionary/URI args, multi-window root, MauiNotifier toast.