Threax.AspNetCore.UserBuilder.Entities
4.0.0
See the version list below for details.
dotnet add package Threax.AspNetCore.UserBuilder.Entities --version 4.0.0
NuGet\Install-Package Threax.AspNetCore.UserBuilder.Entities -Version 4.0.0
<PackageReference Include="Threax.AspNetCore.UserBuilder.Entities" Version="4.0.0" />
paket add Threax.AspNetCore.UserBuilder.Entities --version 4.0.0
#r "nuget: Threax.AspNetCore.UserBuilder.Entities, 4.0.0"
// Install Threax.AspNetCore.UserBuilder.Entities as a Cake Addin #addin nuget:?package=Threax.AspNetCore.UserBuilder.Entities&version=4.0.0 // Install Threax.AspNetCore.UserBuilder.Entities as a Cake Tool #tool nuget:?package=Threax.AspNetCore.UserBuilder.Entities&version=4.0.0
Entity framework connections for the user builder.
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 | 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 was computed. |
.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 (>= 2.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 2.0.0)
- Threax.AspNetCore.UserBuilder (>= 3.2.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Threax.AspNetCore.UserBuilder.Entities:
Package | Downloads |
---|---|
Threax.AspNetCore.UserBuilder.Entities.Mvc
Package Description |
|
Threax.AspNetCore.UserLookup.Mvc
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
11.0.0 | 160 | 8/20/2024 |
7.0.0 | 858 | 3/13/2022 |
6.0.1 | 471 | 5/18/2021 |
6.0.0 | 630 | 1/19/2021 |
5.0.1 | 2,419 | 8/13/2020 |
5.0.0 | 1,969 | 6/26/2020 |
4.1.0 | 1,301 | 10/20/2019 |
4.1.0-pre02 | 678 | 10/5/2019 |
4.0.1 | 5,036 | 7/19/2018 |
4.0.0 | 1,356 | 6/1/2018 |
3.0.0 | 1,007 | 6/1/2018 |
2.7.0 | 1,767 | 3/14/2018 |
2.6.0 | 1,384 | 2/18/2018 |
2.5.1 | 1,417 | 1/31/2018 |
2.5.0 | 1,116 | 12/21/2017 |
2.4.2 | 1,487 | 12/17/2017 |
Removed dependency on sql server library. Refactored AddAuthorizationDatabase the client is now responsible for calling UseSqlServer with the appropriate server themselves.
This is commonly fixed by changing your call to services.AddAuthorizationDatabase<AppDbContext> call to
services.AddAuthorizationDatabase<AppDbContext>()
.AddDbContextPool<AppDbContext>(o =>
{
o.UseSqlServer(connectionString, options =>
{
options.MigrationsAssembly(typeof(AppDbContext).GetTypeInfo().Assembly.GetName().Name);
});
});