Valkyrie 4.0.69

dotnet add package Valkyrie --version 4.0.69
NuGet\Install-Package Valkyrie -Version 4.0.69
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Valkyrie" Version="4.0.69" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Valkyrie --version 4.0.69
#r "nuget: Valkyrie, 4.0.69"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Valkyrie as a Cake Addin
#addin nuget:?package=Valkyrie&version=4.0.69

// Install Valkyrie as a Cake Tool
#tool nuget:?package=Valkyrie&version=4.0.69

Valkyrie

.NET Publish

Valkyrie is a simple set of data annotations and extension methods to help with validating your objects in .NET.

Basic Usage

For the most part, Valkyrie consists of DataAnnotations. To use Valkyrie, simply add the annotations to your properties as shown below:

public class MyClass
{
    [Cascade]
    public MyOtherClass ItemA { get; set; }
	
    [Between("1/1/1900", "1/1/2100")]
    public DateTime ItemB { get; set; }
	
    [Contains("A")]
    public List<string> ItemC { get; set; }
}

The System.ComponentModel.DataAnnotations.Validator class will automatically pick up these annotations when validating your object. Additionally, there are a couple of extension methods added to simplify object validation:

var results = new List<ValidationResult>();
bool didItWork = MyObject.TryValidate(results);

And:

MyObject.Validate();

The TryValidate method returns a list of validation results, while the Validate method throws a ValidationException if there are any issues with validating your object.

Installation

The library is available on NuGet with the package name "Valkyrie." To install it, run the following command in the Package Manager Console:

Install-Package Valkyrie

Build Process

To build the library, make sure you have the following minimum requirements:

  • Visual Studio 2022

Simply clone the project and load the solution in Visual Studio. You should be able to build it without much effort.

Contributing

We welcome contributions to Valkyrie. If you find any issues or have suggestions for improvements, please open an issue or submit a pull request. We appreciate your support!

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Valkyrie:

Package Downloads
Inflatable

Inflatable is a simple ORM.

Monarch

Monarch is a command line parser/command runner

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.69 221 4/11/2024
4.0.68 190 4/10/2024
4.0.67 299 3/30/2024
4.0.66 224 3/28/2024
4.0.65 324 3/15/2024
4.0.64 176 3/14/2024
4.0.63 179 3/13/2024
4.0.62 269 3/8/2024
4.0.61 207 3/7/2024
4.0.60 158 3/6/2024
4.0.59 152 3/5/2024
4.0.58 151 3/4/2024
4.0.57 446 2/28/2024
4.0.56 145 2/28/2024
4.0.55 178 2/23/2024
4.0.54 145 2/22/2024
4.0.53 152 2/21/2024
4.0.52 135 2/20/2024
4.0.51 517 2/14/2024
4.0.50 293 2/9/2024
4.0.49 181 2/7/2024
4.0.48 157 2/6/2024
4.0.47 141 2/5/2024
4.0.46 376 1/31/2024
4.0.45 361 1/23/2024
4.0.44 126 1/22/2024
4.0.43 476 1/10/2024
4.0.42 781 12/18/2023
4.0.41 275 12/13/2023
4.0.40 253 12/12/2023
4.0.39 514 11/23/2023
4.0.38 232 11/20/2023
4.0.37 322 11/17/2023
4.0.36 296 11/16/2023
4.0.35 178 11/16/2023
4.0.34 352 11/8/2023
4.0.33 204 11/6/2023
4.0.32 186 11/3/2023
4.0.31 309 10/31/2023
4.0.30 177 10/30/2023
4.0.29 188 10/27/2023
4.0.28 259 10/25/2023
4.0.27 369 10/11/2023
4.0.26 348 9/25/2023
4.0.25 225 9/19/2023
4.0.24 195 9/19/2023
4.0.23 334 9/13/2023
4.0.22 190 9/12/2023
4.0.21 232 9/11/2023
4.0.20 188 9/11/2023
4.0.19 364 9/7/2023
4.0.18 223 9/5/2023
4.0.17 183 9/4/2023
4.0.16 246 9/1/2023
4.0.15 220 8/31/2023
4.0.14 213 8/30/2023
4.0.13 224 8/29/2023
4.0.12 220 8/28/2023
4.0.11 437 8/22/2023
4.0.10 280 8/17/2023
4.0.9 504 8/8/2023
4.0.8 198 8/8/2023
4.0.7 265 8/7/2023
4.0.6 265 8/4/2023
4.0.5 559 7/25/2023
4.0.4 509 7/13/2023
4.0.3 143 7/13/2023
4.0.2 127 7/13/2023
4.0.1 730 12/13/2022
4.0.0 454 12/12/2022
3.0.10 1,617 6/10/2022
3.0.7 2,202 1/11/2022
3.0.6 2,232 6/16/2021
3.0.5 902 6/16/2021
3.0.4 1,198 1/6/2021
3.0.2 3,187 9/13/2020
3.0.1 8,281 3/25/2020
3.0.0 6,735 12/23/2019
2.0.5 1,721 2/21/2019
2.0.4 3,687 8/10/2018
2.0.3 816 8/10/2018
2.0.2 3,025 6/1/2018
2.0.1 1,455 5/22/2018
2.0.0 3,989 1/2/2018
1.0.6 13,631 5/17/2017
1.0.4 1,076 3/22/2017
1.0.2 1,001 1/26/2017
1.0.1 972 1/25/2017