StrEnum.EntityFrameworkCore
1.0.1
Prefix Reserved
See the version list below for details.
dotnet add package StrEnum.EntityFrameworkCore --version 1.0.1
NuGet\Install-Package StrEnum.EntityFrameworkCore -Version 1.0.1
<PackageReference Include="StrEnum.EntityFrameworkCore" Version="1.0.1" />
paket add StrEnum.EntityFrameworkCore --version 1.0.1
#r "nuget: StrEnum.EntityFrameworkCore, 1.0.1"
// Install StrEnum.EntityFrameworkCore as a Cake Addin #addin nuget:?package=StrEnum.EntityFrameworkCore&version=1.0.1 // Install StrEnum.EntityFrameworkCore as a Cake Tool #tool nuget:?package=StrEnum.EntityFrameworkCore&version=1.0.1
StrEnum.EntityFrameworkCore
Allows to use StrEnum string enums with Entity Framework Core.
Supports EF Core 3.1, EF Core 5.0, and EF Core 6.0.
How do I install it?
You can install StrEnum.EntityFrameworkCore using the .NET CLI:
dotnet add package StrEnum.EntityFrameworkCore
Or using the Package Manager console:
PM> Install-Package StrEnum.EntityFrameworkCore
How do I use it?
Define a string enum and an entity that uses it:
public class SportsType: StringEnum<SportsType>
{
public static readonly SportsType RoadCycling = Define("ROAD_CYCLING");
public static readonly SportsType MountainBiking = Define("MTB");
public static readonly SportsType TrailRunning = Define("TRAIL_RUNNING");
}
public class Race
{
public Guid Id { get; private set; }
public string Name { get; private set; }
public SportsType Sport { get; private set; }
private Race()
{
}
public Race(string name, SportsType sport)
{
Id = Guid.NewGuid();
Name = name;
Sport = sport;
}
}
And call the UseStringEnums()
method when configuring your DB context:
public class RaceContext: DbContext
{
public DbSet<Race> Races { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlServer(@"Server=.;Database=BestRaces;user id=*;pwd=*;")
.UseStringEnums();
}
}
That's it! EF Core is now able to deal with string enums.
Migrations
EF Core will store string enums in non-nullable string columns (NVARCHAR(MAX)
in SQL Server, TEXT
in Postgres).
Running dotnet ef migrations add Init
will produce the following migration:
migrationBuilder.CreateTable(
name: "Races",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
Name = table.Column<string>(type: "nvarchar(max)", nullable: false),
Sport = table.Column<string>(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Races", x => x.Id);
});
In order to store a nullable string enum, mark the property is non-required when configuring your entity:
var race = builder.Entity<Race>();
race.Property(p => p.Sport).IsRequired(false);
Querying
EF Core will translate LINQ operations on string enums into SQL.
Let's add some races first:
var context = new RaceContext();
await context.Database.EnsureDeletedAsync();
await context.Database.EnsureCreatedAsync();
var races = new[]
{
new Race("Chornohora Sky Marathon", SportsType.TrailRunning),
new Race("Cape Town Cycle Tour", SportsType.RoadCycling),
new Race("Cape Epic", SportsType.MountainBiking)
};
await context.Races.AddRangeAsync(races);
await context.SaveChangesAsync();
And filter by a single SportsType:
var trailRuns = await context.Races.Where(o => o.Sport == SportsType.TrailRunning).ToArrayAsync();
That will produce the following SQL:
SELECT [r].[Id], [r].[Name], [r].[Sport]
FROM [Races] AS [r]
WHERE [r].[Sport] = N'TRAIL_RUNNING'
You can also query by multiple SportsType values:
var cyclingSports = new[] { SportsType.MountainBiking, SportsType.RoadCycling };
var racesThatRequireABicycle = await context.Races.Where(o => cyclingSports.Contains(o.Sport)).ToArrayAsync();
Which will translate to the following SQL:
SELECT [r].[Id], [r].[Name], [r].[Sport]
FROM [Races] AS [r]
WHERE [r].[Sport] IN (N'MTB', N'ROAD_CYCLING')
Acknowledgements
Thanks to Andrew Lock for his research on using custom ValueConverterSelector
.
License
Copyright © 2022 Dmitry Khmara.
StrEnum is licensed under the MIT license.
Product | Versions 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 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 | 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 was computed. 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. |
-
.NETStandard 2.0
- Microsoft.EntityFrameworkCore (>= 3.1.0 && < 5.0.0)
- StrEnum (>= 1.3.0 && < 2.0.0)
-
.NETStandard 2.1
- Microsoft.EntityFrameworkCore (>= 3.1.0 && < 6.0.0)
- StrEnum (>= 1.3.0 && < 2.0.0)
-
net6.0
- Microsoft.EntityFrameworkCore (>= 3.1.0 && < 7.0.0)
- StrEnum (>= 1.3.0 && < 2.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.