Microsoft.Extensions.Options.DataAnnotations 9.0.0-preview.6.24327.7

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.

Showing the top 20 packages that depend on Microsoft.Extensions.Options.DataAnnotations.

Packages Downloads
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.
13
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.
14
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.
15
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.
19
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.
21
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.
37
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. This package was built from the source at: https://github.com/aspnet/Universe/tree/244e037a222a7cd0a17feafb7f3a625fde40de97
19
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.
12
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.
16
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.
17
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.
18
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.
21
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.
42
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.
44
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.
55
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. This package was built from the source at: https://github.com/aspnet/Universe/tree/1016eae4004686f7fdad13f5c329f63bbae1f3a1
48
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. This package was built from the source at: https://github.com/aspnet/Universe/tree/244e037a222a7cd0a17feafb7f3a625fde40de97
37

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET Standard 2.1

.NET Standard 2.0

.NET 9.0

.NET 8.0

Version Downloads Last updated
9.0.0-rc.1.24431.7 5 09/10/2024
9.0.0-preview.7.24405.7 5 08/13/2024
9.0.0-preview.6.24327.7 4 07/10/2024
9.0.0-preview.5.24306.7 4 06/13/2024
9.0.0-preview.4.24266.19 8 05/23/2024
9.0.0-preview.3.24172.9 10 04/21/2024
9.0.0-preview.2.24128.5 12 03/14/2024
9.0.0-preview.1.24080.9 5 02/25/2024
8.0.0 12 11/15/2023
8.0.0-rc.2.23479.6 21 10/19/2023
8.0.0-rc.1.23419.4 16 09/14/2023
8.0.0-preview.7.23375.6 15 09/04/2023
8.0.0-preview.6.23329.7 14 09/13/2023
8.0.0-preview.5.23280.8 20 06/18/2023
8.0.0-preview.4.23259.5 14 05/26/2023
8.0.0-preview.3.23174.8 26 05/28/2023
8.0.0-preview.2.23128.3 14 06/23/2023
8.0.0-preview.1.23110.8 13 06/23/2023
7.0.0 11 06/23/2023
7.0.0-rc.2.22472.3 17 10/15/2022
7.0.0-rc.1.22426.10 16 09/26/2022
7.0.0-preview.7.22375.6 20 09/21/2022
7.0.0-preview.6.22324.4 17 09/23/2022
7.0.0-preview.5.22301.12 21 09/24/2022
7.0.0-preview.4.22229.4 23 09/25/2022
7.0.0-preview.3.22175.4 18 09/24/2022
7.0.0-preview.2.22152.2 18 09/25/2022
7.0.0-preview.1.22076.8 21 09/24/2022
6.0.2-mauipre.1.22102.15 12 09/24/2022
6.0.2-mauipre.1.22054.8 19 09/25/2022
6.0.0 17 09/22/2022
6.0.0-rc.2.21480.5 22 09/22/2022
6.0.0-rc.1.21451.13 16 09/23/2022
6.0.0-preview.7.21377.19 29 09/25/2022
6.0.0-preview.6.21352.12 24 09/22/2022
6.0.0-preview.5.21301.5 19 09/24/2022
6.0.0-preview.4.21253.7 23 09/24/2022
6.0.0-preview.3.21201.4 18 09/25/2022
6.0.0-preview.2.21154.6 16 09/22/2022
6.0.0-preview.1.21102.12 20 09/23/2022
5.0.0 15 09/21/2022
5.0.0-rc.2.20475.5 30 09/22/2022
5.0.0-rc.1.20451.14 22 09/24/2022
5.0.0-preview.8.20407.11 26 09/25/2022
5.0.0-preview.7.20364.11 19 09/25/2022
5.0.0-preview.6.20305.6 20 09/25/2022
5.0.0-preview.5.20278.1 20 09/23/2022
5.0.0-preview.4.20251.6 20 09/25/2022
5.0.0-preview.3.20215.2 19 10/15/2022
5.0.0-preview.2.20160.3 16 09/24/2022
5.0.0-preview.1.20120.4 20 09/24/2022
3.1.32 12 06/23/2023
3.1.31 17 06/23/2023
3.1.30 10 10/15/2022
3.1.29 21 09/21/2022
3.1.28 17 10/15/2022
3.1.27 12 10/15/2022
3.1.26 11 09/21/2022
3.1.25 17 09/23/2022
3.1.24 13 09/24/2022
3.1.23 13 09/22/2022
3.1.22 11 09/22/2022
3.1.21 22 09/25/2022
3.1.20 30 09/24/2022
3.1.19 31 09/24/2022
3.1.18 20 09/23/2022
3.1.17 21 09/23/2022
3.1.16 17 09/26/2022
3.1.15 18 10/15/2022
3.1.14 18 09/21/2022
3.1.13 17 09/22/2022
3.1.12 13 10/15/2022
3.1.11 21 10/15/2022
3.1.10 18 09/24/2022
3.1.9 9 10/15/2022
3.1.8 15 09/21/2022
3.1.7 11 10/15/2022
3.1.6 11 09/26/2022
3.1.5 28 09/23/2022
3.1.4 9 09/26/2022
3.1.3 12 09/23/2022
3.1.2 19 10/16/2022
3.1.1 16 10/15/2022
3.1.0 20 09/23/2022
3.1.0-preview3.19553.2 23 09/24/2022
3.1.0-preview2.19525.4 16 09/27/2022
3.1.0-preview1.19506.1 17 09/26/2022
3.0.3 19 09/22/2022
3.0.2 13 09/27/2022
3.0.1 16 09/25/2022
3.0.0 14 09/26/2022
3.0.0-rc1.19456.10 20 09/22/2022
3.0.0-preview9.19423.4 12 09/27/2022
3.0.0-preview8.19405.4 19 09/23/2022
3.0.0-preview7.19362.4 17 09/22/2022
3.0.0-preview6.19304.6 18 09/24/2022
3.0.0-preview5.19227.9 19 09/26/2022
3.0.0-preview4.19216.2 15 09/23/2022
3.0.0-preview3.19153.1 18 09/23/2022
3.0.0-preview.19074.2 18 09/24/2022
3.0.0-preview.18572.1 20 09/22/2022
2.2.0 12 10/15/2022
2.2.0-preview3-35497 22 09/22/2022
2.2.0-preview2-35157 20 09/21/2022