Microsoft.Extensions.Options.DataAnnotations 8.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.Extensions.Options.DataAnnotations --version 8.0.0
NuGet\Install-Package Microsoft.Extensions.Options.DataAnnotations -Version 8.0.0
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="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Extensions.Options.DataAnnotations --version 8.0.0
#r "nuget: Microsoft.Extensions.Options.DataAnnotations, 8.0.0"
#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 Microsoft.Extensions.Options.DataAnnotations as a Cake Addin
#addin nuget:?package=Microsoft.Extensions.Options.DataAnnotations&version=8.0.0

// Install Microsoft.Extensions.Options.DataAnnotations as a Cake Tool
#tool nuget:?package=Microsoft.Extensions.Options.DataAnnotations&version=8.0.0

About

Microsoft.Extensions.Options.DataAnnotations is a library that adds extra validation functionality to configuration options using data annotations.

It allows to apply validation rules to configuration classes to ensure they are correctly configured before the application starts running.

This way, misconfiguration issues are catched early during the application startup rather than facing them later in production.

Key Features

  • Enables validation of configuration options using data annotations.
  • Early detection of misconfiguration issues during application startup.

How to Use

While configuring services, chain the ValidateDataAnnotations() and ValidateOnStart() methods to the AddOptions method for your configuration class.

Here is a simple example demonstrating how to validate options on application startup:

services
    .AddOptions<MyOptions>()
    .ValidateDataAnnotations()
    .ValidateOnStart();

In the configuration class, use data annotations to specify the validation rules.

For instance, in the following MyOptions class, the Name property is marked as required:

using System.ComponentModel.DataAnnotations;

public class MyOptions
{
    [Required(AllowEmptyStrings = false)]
    public string Name { get; set; }
}

With this setup, an error indicating that the Name field is required will be thrown upon startup if it hasn't been configured.

Main Types

The main types provided by this library are:

  • Microsoft.Extensions.Options.DataAnnotationsValidateOptions<TOptions>
  • Microsoft.Extensions.DependencyInjection.OptionsBuilderDataAnnotationsExtensions

Additional Documentation

Core options: Microsoft.Extensions.Options

Feedback & Contributing

Microsoft.Extensions.Options.DataAnnotations is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 is compatible.  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 is compatible.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (234)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Options.DataAnnotations:

Package Downloads
Microsoft.AspNetCore.App The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

Microsoft.AspNetCore.All The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

Umbraco.Cms.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Contains the core assembly needed to run Umbraco CMS.

VirtoCommerce.Platform.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Virto Commerce is a flexible B2B ecommerce solution that offers powerful tools for enterprise business users. https://virtocommerce.com

Stl

Stl ("ServiceTitan Library") is a collection of relatively small abstractions or methods we couldn't find in BCL. A part of Stl.Fusion.

GitHub repositories (16)

Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Options.DataAnnotations:

Repository Stars
umbraco/Umbraco-CMS
The simple, flexible and friendly ASP.NET CMS used by more than 730.000 websites
TelegramBots/Telegram.Bot
.NET Client for Telegram Bot API
servicetitan/Stl.Fusion
Build real-time apps (Blazor included) with less than 1% of extra code responsible for real-time updates. Host 10-1000x faster APIs relying on transparent and nearly 100% consistent caching. We call it DREAM, or Distributed REActive Memoization, and it's here to turn real-time on!
Finbuckle/Finbuckle.MultiTenant
Finbuckle.MultiTenant is an open-source multitenancy middleware library for .NET. It enables tenant resolution, per-tenant app behavior, and per-tenant data isolation.
VirtoCommerce/vc-platform
Virto Commerce Platform Repository
Version Downloads Last updated
9.0.0-preview.2.24128.5 145 3/12/2024
9.0.0-preview.1.24080.9 743 2/13/2024
8.0.0 1,109,268 11/14/2023
8.0.0-rc.2.23479.6 13,695 10/10/2023
8.0.0-rc.1.23419.4 10,550 9/12/2023
8.0.0-preview.7.23375.6 4,709 8/8/2023
8.0.0-preview.6.23329.7 1,420 7/11/2023
8.0.0-preview.5.23280.8 2,306 6/13/2023
8.0.0-preview.4.23259.5 769 5/16/2023
8.0.0-preview.3.23174.8 2,747 4/11/2023
8.0.0-preview.2.23128.3 929 3/14/2023
8.0.0-preview.1.23110.8 9,269 2/21/2023
7.0.0 5,504,833 11/7/2022
7.0.0-rc.2.22472.3 15,375 10/11/2022
7.0.0-rc.1.22426.10 6,696 9/14/2022
7.0.0-preview.7.22375.6 2,432 8/9/2022
7.0.0-preview.6.22324.4 1,798 7/12/2022
7.0.0-preview.5.22301.12 2,494 6/14/2022
7.0.0-preview.4.22229.4 3,719 5/10/2022
7.0.0-preview.3.22175.4 756 4/13/2022
7.0.0-preview.2.22152.2 676 3/14/2022
7.0.0-preview.1.22076.8 837 2/17/2022
6.0.2-mauipre.1.22102.15 1,179 2/15/2022
6.0.2-mauipre.1.22054.8 1,779 1/19/2022
6.0.0 12,607,160 11/8/2021
6.0.0-rc.2.21480.5 2,176 10/12/2021
6.0.0-rc.1.21451.13 3,367 9/14/2021
6.0.0-preview.7.21377.19 2,602 8/10/2021
6.0.0-preview.6.21352.12 6,148 7/14/2021
6.0.0-preview.5.21301.5 427 6/15/2021
6.0.0-preview.4.21253.7 916 5/24/2021
6.0.0-preview.3.21201.4 336 4/8/2021
6.0.0-preview.2.21154.6 456 3/11/2021
6.0.0-preview.1.21102.12 444 2/12/2021
5.0.0 6,697,416 11/9/2020
5.0.0-rc.2.20475.5 759 10/13/2020
5.0.0-rc.1.20451.14 565 9/14/2020
5.0.0-preview.8.20407.11 594 8/25/2020
5.0.0-preview.7.20364.11 713 7/21/2020
5.0.0-preview.6.20305.6 1,140 6/25/2020
5.0.0-preview.5.20278.1 20,585 6/10/2020
5.0.0-preview.4.20251.6 516 5/18/2020
5.0.0-preview.3.20215.2 473 4/23/2020
5.0.0-preview.2.20160.3 485 4/2/2020
5.0.0-preview.1.20120.4 473 3/16/2020
3.1.32 26,497 12/13/2022
3.1.31 4,314 11/8/2022
3.1.30 3,007 10/11/2022
3.1.29 9,931 9/13/2022
3.1.28 29,394 8/9/2022
3.1.27 5,037 7/12/2022
3.1.26 20,822 6/14/2022
3.1.25 43,971 5/10/2022
3.1.24 28,263 4/11/2022
3.1.23 48,629 3/8/2022
3.1.22 174,380 12/14/2021
3.1.21 410,678 11/7/2021
3.1.20 40,964 10/11/2021
3.1.19 72,965 9/14/2021
3.1.18 235,519 8/10/2021
3.1.17 104,432 7/13/2021
3.1.16 48,178 6/8/2021
3.1.15 327,184 5/11/2021
3.1.14 261,515 4/6/2021
3.1.13 309,399 3/9/2021
3.1.12 172,783 2/9/2021
3.1.11 62,233 1/12/2021
3.1.10 439,074 11/9/2020
3.1.9 279,955 10/13/2020
3.1.8 996,161 9/8/2020
3.1.7 470,599 8/11/2020
3.1.6 156,456 7/14/2020
3.1.5 322,737 6/9/2020
3.1.4 397,514 5/12/2020
3.1.3 307,742 3/24/2020
3.1.2 1,624,065 2/18/2020
3.1.1 176,920 1/14/2020
3.1.0 503,954 12/3/2019
3.1.0-preview3.19553.2 621 11/13/2019
3.1.0-preview2.19525.4 983 11/1/2019
3.1.0-preview1.19506.1 1,578 10/15/2019
3.0.3 3,665 2/18/2020
3.0.2 2,808 1/14/2020
3.0.1 8,292 11/18/2019
3.0.0 205,794 9/23/2019
3.0.0-rc1.19456.10 1,364 9/16/2019
3.0.0-preview9.19423.4 1,486 9/4/2019
3.0.0-preview8.19405.4 1,432 8/13/2019
3.0.0-preview7.19362.4 968 7/23/2019
3.0.0-preview6.19304.6 4,512 6/12/2019
3.0.0-preview5.19227.9 1,164 5/6/2019
3.0.0-preview4.19216.2 3,527 4/18/2019
3.0.0-preview3.19153.1 546 3/6/2019
3.0.0-preview.19074.2 579 1/29/2019
3.0.0-preview.18572.1 590 12/4/2018
2.2.0 13,022,765 12/3/2018
2.2.0-preview3-35497 62,384 10/17/2018
2.2.0-preview2-35157 4,717 9/12/2018