Fluxera.Enumeration.JsonNet
6.1.3
Prefix Reserved
See the version list below for details.
dotnet add package Fluxera.Enumeration.JsonNet --version 6.1.3
NuGet\Install-Package Fluxera.Enumeration.JsonNet -Version 6.1.3
<PackageReference Include="Fluxera.Enumeration.JsonNet" Version="6.1.3" />
paket add Fluxera.Enumeration.JsonNet --version 6.1.3
#r "nuget: Fluxera.Enumeration.JsonNet, 6.1.3"
// Install Fluxera.Enumeration.JsonNet as a Cake Addin #addin nuget:?package=Fluxera.Enumeration.JsonNet&version=6.1.3 // Install Fluxera.Enumeration.JsonNet as a Cake Tool #tool nuget:?package=Fluxera.Enumeration.JsonNet&version=6.1.3
Fluxera.Enumeration
An object-oriented enumeration library.
Usage
Define an enumerable as C# class that inherits from the Enumeration<TEnum>
base class.
Add the enumeration options as public static readonly fields to the new enumerable class.
public sealed class Color : Enumeration<Color>
{
public static readonly Color Red = new Color(0, "FF0000");
public static readonly Color Green = new Color(1, "00FF00");
public static readonly Color Blue = new Color(2, "0000FF");
public static readonly Color White = new Color(3, "FFFFFF");
public static readonly Color Black = new Color(4, "000000");
/// <inheritdoc />
private Color(int value, string hexValue, [CallerMemberName] string name = null!)
: base(value, name)
{
this.HexValue = hexValue;
}
public string HexValue { get; }
}
public class MessageType : Enumeration<MessageType>
{
public static readonly MessageType Email = new EmailType();
public static readonly MessageType Postal = new PostalType();
public static readonly MessageType TextMessage = new TextMessageType();
/// <inheritdoc />
private MessageType(int value, string name)
: base(value, name)
{
}
private sealed class EmailType : MessageType
{
/// <inheritdoc />
public EmailType() : base(0, "Email")
{
}
}
private sealed class PostalType : MessageType
{
/// <inheritdoc />
public PostalType() : base(1, "Postal")
{
}
}
private sealed class TextMessageType : MessageType
{
/// <inheritdoc />
public TextMessageType() : base(2, "TextMessage")
{
}
}
}
public abstract class Animal : Enumeration<Animal>
{
/// <inheritdoc />
protected Animal(int value, string name)
: base(value, name)
{
}
}
public sealed class Mammal : Animal
{
public static readonly Mammal Tiger = new Mammal(0);
public static readonly Mammal Elephant = new Mammal(1);
/// <inheritdoc />
private Mammal(int value, [CallerMemberName] string name = null!)
: base(value, name)
{
}
}
public sealed class Reptile : Animal
{
public static readonly Reptile Iguana = new Reptile(2);
public static readonly Reptile Python = new Reptile(3);
/// <inheritdoc />
private Reptile(int value, [CallerMemberName] string name = null!)
: base(value, name)
{
}
}
The default type for the value is int
, but several other types can be used as the value: byte
, short
,int
,long
,decimal
,float
,double
,string
and Guid
.
public class GuidEnum : Enumeration<GuidEnum, Guid>
{
public static readonly GuidEnum One = new GuidEnum(Guid.Parse("7a524c5a-7724-442d-a906-8219bce4a0fd"), "One");
/// <inheritdoc />
public GuidEnum(Guid value, string name)
: base(value, name)
{
}
}
public class LongEnum : Enumeration<LongEnum, long>
{
public static readonly LongEnum One = new LongEnum(999999999999999999, "One");
/// <inheritdoc />
public LongEnum(long value, string name)
: base(value, name)
{
}
}
The Enumeration<TEnum>
provides a fluent API to configure switch-case like structures
to simplify the execution of action for specific cases.
public void PrintColorInfo(Color color)
{
color
.When(Color.Red).Then(() => SetConsoleColor(ConsoleColor.Red))
.When(Color.Blue).Then(() => SetConsoleColor(ConsoleColor.Blue))
.When(Color.Green).Then(() => SetConsoleColor(ConsoleColor.Green))
.Default(() => SetConsoleColor(ConsoleColor.White));
Console.WriteLine($"{color}({color.Value}) => #{color.HexValue}");
}
Serialization Support
At the moment serialization support is available for:
Entity Framework Core
To support Enumeration<TEnum>
in EFCore use one of the available extension methods on the ModelBuilder
.
// Store the name in the database.
modelBuilder.ApplyEnumerationNameConversions();
// Store the value in the database.
modelBuilder.ApplyEnumerationValueConversions();
Newtonsoft.Json (JSON.NET)
To support Enumeration<TEnum>
in JSON.NET use one of the available extensions methods on the JsonSerializerSettings
.
JsonSerializerSettings settings = new JsonSerializerSettings();
// Use the name to serialize all enumerations.
settings.UseEnumerationNameConverter();
// Use the value to serialize all enumerations.
settings.UseEnumerationValueConverter();
// Use the name to serialize just the Color enumeration.
settings.UseEnumerationNameConverter<Color>();
// Use the value to serialize just the Color enumeration.
settings.UseEnumerationValueConverter<Color>();
JsonConvert.DefaultSettings = () => settings;
LiteDB
To support Enumeration<TEnum>
in LiteDB use one of the available extensions methods on the BsonMapper
.
// Store the name in the database for all enumerations available in the given assembly.
BsonMapper.Global.UseEnumerationName(Assembly.GetExecutingAssembly());
// Store the value in the database for all enumerations available in the given assembly.
BsonMapper.Global.UseEnumerationValue(Assembly.GetExecutingAssembly());
// Store the name in the database just for the Color enumeration.
BsonMapper.Global.UseEnumerationName<Color>();
// Store the value in the database just for the Color enumeration.
BsonMapper.Global.UseEnumerationName<Color>();
MongoDB
To support Enumeration<TEnum>
in MongoDB use one of the available extensions methods on the ConventionPack
.
ConventionPack pack = new ConventionPack();
// Store the name in the database.
pack.AddEnumerationNameConvention();
// Store the value in the database.
pack.AddEnumerationValueConvention();
ConventionRegistry.Register("ConventionPack", pack, t => true);
System.Text.Json
To support Enumeration<TEnum>
in System.Text.Json use one of the available extensions methods on the JsonSerializerOptions
.
JsonSerializerOptions options = new JsonSerializerOptions();
// Use the name to serialize all enumerations.
options.UseEnumerationNameConverter();
// Use the value to serialize all enumerations.
options.UseEnumerationValueConverter();
// Use the name to serialize just the Color enumeration.
settings.UseEnumerationNameConverter<Color>();
// Use the value to serialize just the Color enumeration.
settings.UseEnumerationValueConverter<Color>();
Future
We plan to implement support for OData server- and client-side to enable queries on Enumeration
like is was an simple C# enum
.
An Enumeration
should generate an EdmEnumType
in the metadata for an OData feed.
The simple way would be to add the enumeraions as complex type, but that feels wrong because
the object-oriented enumeration should work like an enum
and the EDM model would not
reflect the available options.
EdmEnumType color = new EdmEnumType("Default", "Color");
color.AddMember(new EdmEnumMember(color, "Red", new EdmIntegerConstant(0)));
color.AddMember(new EdmEnumMember(color, "Blue", new EdmIntegerConstant(1)));
color.AddMember(new EdmEnumMember(color, "Green", new EdmIntegerConstant(2)));
model.AddElement(color);
This cannot be achieved using the model builder because the enum methods are tightly bound to C# enum
.
<EnumType Name="Color">
<Member Name="Red" Value="0" />
<Member Name="Blue" Value="1" />
<Member Name="Green" Value="2" />
</EnumType>
We want to support filter queries like so:
https://localhost:5001/odata/Cars?$filter=Color eq 'Blue'
https://localhost:5001/odata/Cars?$filter=Color eq 1
https://github.com/OData/WebApi/issues/1186 https://github.com/OData/WebApi/blob/master/src/Microsoft.AspNet.OData.Shared/UnqualifiedCallAndEnumPrefixFreeResolver.cs
We also plan to support Swagger documentation in ASP.NET Core applications.
References
This library was inspired by:
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 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Fluxera.Enumeration (>= 6.1.3)
- Fluxera.Guards (>= 6.1.0)
- JetBrains.Annotations (>= 2022.1.0)
- Newtonsoft.Json (>= 13.0.1)
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 |
---|---|---|
8.2.4 | 66 | 11/1/2024 |
8.2.3 | 97 | 7/9/2024 |
8.2.2 | 117 | 6/15/2024 |
8.2.1 | 99 | 6/12/2024 |
8.2.0 | 101 | 6/12/2024 |
8.1.1 | 103 | 6/2/2024 |
8.1.0 | 112 | 5/26/2024 |
8.0.8 | 113 | 5/24/2024 |
8.0.7 | 109 | 5/24/2024 |
8.0.6 | 129 | 4/13/2024 |
8.0.5 | 114 | 4/13/2024 |
8.0.4 | 131 | 3/19/2024 |
8.0.3 | 108 | 2/22/2024 |
8.0.2 | 194 | 1/4/2024 |
8.0.1 | 194 | 11/23/2023 |
8.0.0 | 138 | 11/15/2023 |
7.1.6 | 189 | 7/23/2023 |
7.1.5 | 169 | 7/20/2023 |
7.1.4 | 138 | 6/21/2023 |
7.1.3 | 196 | 4/13/2023 |
7.1.2 | 223 | 3/16/2023 |
7.1.1 | 251 | 2/24/2023 |
7.1.0 | 305 | 1/18/2023 |
7.0.7 | 288 | 12/22/2022 |
7.0.6 | 286 | 12/13/2022 |
7.0.5 | 293 | 12/13/2022 |
7.0.4 | 288 | 12/9/2022 |
7.0.3 | 347 | 11/15/2022 |
7.0.2 | 331 | 11/12/2022 |
7.0.0 | 313 | 11/9/2022 |
6.1.6 | 410 | 10/12/2022 |
6.1.5 | 439 | 9/15/2022 |
6.1.4 | 443 | 7/30/2022 |
6.1.3 | 450 | 6/30/2022 |
6.1.2 | 437 | 6/15/2022 |
6.1.1 | 444 | 6/7/2022 |
6.1.0 | 448 | 6/1/2022 |
6.0.13 | 462 | 5/28/2022 |
6.0.12 | 433 | 5/5/2022 |
6.0.11 | 465 | 4/20/2022 |
6.0.10 | 447 | 3/26/2022 |
6.0.9 | 441 | 3/24/2022 |
6.0.8 | 479 | 2/17/2022 |
6.0.7 | 354 | 12/17/2021 |
6.0.6 | 561 | 12/11/2021 |
6.0.3 | 333 | 12/9/2021 |