Microsoft.Extensions.Options.DataAnnotations
10.0.0-preview.1.25080.5
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Options.DataAnnotations --version 10.0.0-preview.1.25080.5
NuGet\Install-Package Microsoft.Extensions.Options.DataAnnotations -Version 10.0.0-preview.1.25080.5
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="10.0.0-preview.1.25080.5" />
<PackageVersion Include="Microsoft.Extensions.Options.DataAnnotations" Version="10.0.0-preview.1.25080.5" />
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" />
paket add Microsoft.Extensions.Options.DataAnnotations --version 10.0.0-preview.1.25080.5
#r "nuget: Microsoft.Extensions.Options.DataAnnotations, 10.0.0-preview.1.25080.5"
#addin nuget:?package=Microsoft.Extensions.Options.DataAnnotations&version=10.0.0-preview.1.25080.5&prerelease
#tool nuget:?package=Microsoft.Extensions.Options.DataAnnotations&version=10.0.0-preview.1.25080.5&prerelease
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
Related Packages
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. |
.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. |
-
.NETFramework 4.6.2
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
-
.NETStandard 2.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
- System.ComponentModel.Annotations (>= 5.0.0)
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
- System.ComponentModel.Annotations (>= 5.0.0)
-
net10.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
-
net8.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
-
net9.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
NuGet packages (386)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Options.DataAnnotations:
Package | Downloads |
---|---|
Microsoft.AspNetCore.App
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
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
Contains the core assembly needed to run Umbraco CMS. |
|
VirtoCommerce.Platform.Core
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 (25)
Showing the top 20 popular GitHub repositories that depend on Microsoft.Extensions.Options.DataAnnotations:
Repository | Stars |
---|---|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
|
|
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 B2B Innovation Platform
|
|
bitfoundation/bitplatform
Build all of your apps using what you already know and love ❤️
|
|
mehdihadeli/monolith-to-cloud-native-transformation
🍔 A practical and imaginary food delivery microservices, built with .Net 9, MassTransit, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
|
|
notifo-io/notifo
Multi channel notification service for collaboration tools, e-commerce, news service and more.
|
|
bdovaz/UnityNuGet
Provides a service to install NuGet packages into a Unity project via the Unity Package Manager
|
|
fullstackhero/dotnet-microservices-boilerplate
The Ultimate Microservices Starter Kit for .NET Developers!
|
|
planetarium/libplanet
Blockchain in C#/.NET for on-chain, decentralized gaming
|
|
jeangatto/ASP.NET-Core-Clean-Architecture-CQRS-Event-Sourcing
ASP.NET Core, C#, CQRS Event Sourcing, REST API, DDD, SOLID Principles and Clean Architecture
|
|
Jcparkyn/nodexr
Graphical regular expression editor
|
|
AntonioFalcaoJr/EventualShop
A state-of-the-art distributed system using Reactive DDD as uncertainty modeling, Event Storming as subdomain decomposition, Event Sourcing as an eventual persistence mechanism, CQRS, Async Projections, Microservices for individual deployable units, Event-driven Architecture for efficient integration, and Clean Architecture as domain-centric design
|
|
dotnet/systemweb-adapters
|
|
mehdihadeli/food-delivery-modular-monolith
🌭 A practical and imaginary food and grocery delivery modular monolith, built with .Net 8, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
|
|
Bryan-Cyf/SuperShortLink
这是一个基于.NET开源的短链生成及监控系统,包含了短URL的生成、短URL跳转长URL、短URL访问统计以及Web后台监控页面,可以帮助我们更容易地生成短链、监控短链!
|
|
NetCordDev/NetCord
A modern, lightweight, and customizable C# Discord library with Native AOT support, immutable caching, voice capabilities, and complete API coverage.
|
|
microsoft/durabletask-dotnet
Out-of-process .NET SDK for the Durable Task Framework
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.2.25163.2 | 455 | 3/18/2025 | |
10.0.0-preview.1.25080.5 | 650 | 2/25/2025 | |
9.0.4 | 4,311 | 4/8/2025 | |
9.0.3 | 252,282 | 3/11/2025 | |
9.0.2 | 486,701 | 2/11/2025 | |
9.0.1 | 551,259 | 1/14/2025 | |
9.0.0 | 1,271,365 | 11/12/2024 | |
9.0.0-rc.2.24473.5 | 11,267 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 6,094 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 2,412 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 5,920 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 960 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 2,783 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 5,864 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 869 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 3,243 | 2/13/2024 | |
8.0.0 | 15,428,734 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 15,567 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 13,484 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 6,022 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 1,780 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 2,509 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 988 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 3,099 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 1,321 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 10,598 | 2/21/2023 | |
7.0.0 | 8,644,038 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 17,891 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 7,101 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 3,302 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 1,947 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 2,625 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 3,882 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 985 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 831 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 1,005 | 2/17/2022 | |
6.0.1 | 48,004 | 11/12/2024 | |
6.0.0 | 17,307,953 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 2,296 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 3,480 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 2,755 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 7,655 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 566 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 1,131 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 482 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 584 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 576 | 2/12/2021 | |
5.0.0 | 8,325,529 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 896 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 732 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 759 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 876 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 1,282 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 33,193 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 687 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 614 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 625 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 635 | 3/16/2020 | |
3.1.32 | 76,497 | 12/13/2022 | |
3.1.31 | 5,394 | 11/8/2022 | |
3.1.30 | 4,042 | 10/11/2022 | |
3.1.29 | 13,478 | 9/13/2022 | |
3.1.28 | 37,827 | 8/9/2022 | |
3.1.27 | 6,271 | 7/12/2022 | |
3.1.26 | 21,895 | 6/14/2022 | |
3.1.25 | 64,397 | 5/10/2022 | |
3.1.24 | 33,569 | 4/11/2022 | |
3.1.23 | 54,729 | 3/8/2022 | |
3.1.22 | 315,635 | 12/14/2021 | |
3.1.21 | 772,942 | 11/7/2021 | |
3.1.20 | 49,836 | 10/11/2021 | |
3.1.19 | 92,264 | 9/14/2021 | |
3.1.18 | 523,418 | 8/10/2021 | |
3.1.17 | 107,876 | 7/13/2021 | |
3.1.16 | 59,818 | 6/8/2021 | |
3.1.15 | 329,481 | 5/11/2021 | |
3.1.14 | 282,798 | 4/6/2021 | |
3.1.13 | 363,580 | 3/9/2021 | |
3.1.12 | 232,203 | 2/9/2021 | |
3.1.11 | 67,242 | 1/12/2021 | |
3.1.10 | 498,249 | 11/9/2020 | |
3.1.9 | 293,451 | 10/13/2020 | |
3.1.8 | 1,044,922 | 9/8/2020 | |
3.1.7 | 572,551 | 8/11/2020 | |
3.1.6 | 161,615 | 7/14/2020 | |
3.1.5 | 353,578 | 6/9/2020 | |
3.1.4 | 463,886 | 5/12/2020 | |
3.1.3 | 318,667 | 3/24/2020 | |
3.1.2 | 1,674,213 | 2/18/2020 | |
3.1.1 | 193,095 | 1/14/2020 | |
3.1.0 | 574,179 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 784 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 1,127 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 1,721 | 10/15/2019 | |
3.0.3 | 5,980 | 2/18/2020 | |
3.0.2 | 3,800 | 1/14/2020 | |
3.0.1 | 9,436 | 11/18/2019 | |
3.0.0 | 233,354 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 1,537 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 1,698 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 1,615 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 1,166 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 4,742 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 1,374 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 3,939 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 713 | 3/6/2019 | |
3.0.0-preview.19074.2 | 717 | 1/29/2019 | |
3.0.0-preview.18572.1 | 747 | 12/4/2018 | |
2.2.0 | 14,343,974 | 12/3/2018 | |
2.2.0-preview3-35497 | 63,147 | 10/17/2018 | |
2.2.0-preview2-35157 | 4,979 | 9/12/2018 |