LogicBuilder.EntityFrameworkCore.SqlServer
7.0.0
Prefix Reserved
dotnet add package LogicBuilder.EntityFrameworkCore.SqlServer --version 7.0.0
NuGet\Install-Package LogicBuilder.EntityFrameworkCore.SqlServer -Version 7.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LogicBuilder.EntityFrameworkCore.SqlServer" Version="7.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LogicBuilder.EntityFrameworkCore.SqlServer" Version="7.0.0" />
<PackageReference Include="LogicBuilder.EntityFrameworkCore.SqlServer" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LogicBuilder.EntityFrameworkCore.SqlServer --version 7.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LogicBuilder.EntityFrameworkCore.SqlServer, 7.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LogicBuilder.EntityFrameworkCore.SqlServer@7.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LogicBuilder.EntityFrameworkCore.SqlServer&version=7.0.0
#tool nuget:?package=LogicBuilder.EntityFrameworkCore.SqlServer&version=7.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
LogicBuilder.EntityFrameworkCore.SqlServer
- Maps business model objects to and from data objects.
- Maps query expressions from business model to data model.
To use:
//Create a context
public class SchoolContext : DbContext
{
public SchoolContext(DbContextOptions<SchoolContext> options) : base(options)
{
}
}
//Create Store
public interface ISchoolStore : IStore
{
}
public class SchoolStore : StoreBase, ISchoolStore
{
public SchoolStore(SchoolContext context)
: base(context)
{
}
}
//Create Repository
public interface ISchoolRepository : IContextRepository
{
}
public class SchoolRepository : ContextRepositoryBase, ISchoolRepository
{
public SchoolRepository(ISchoolStore store, IMapper mapper) : base(store, mapper)
{
}
}
//Register Services including AutoMapper profiles.
IServiceProvider serviceProvider = new ServiceCollection()
.AddDbContext<SchoolContext>
(
options =>
{
options.UseInMemoryDatabase("ContosoUniVersity");
options.UseInternalServiceProvider(new ServiceCollection().AddEntityFrameworkInMemoryDatabase().BuildServiceProvider());
}
)
.AddTransient<ISchoolStore, SchoolStore>()
.AddTransient<ISchoolRepository, SchoolRepository>()
.AddSingleton<AutoMapper.IConfigurationProvider>(new MapperConfiguration(cfg => cfg.AddProfiles(typeof(SchoolProfile).GetTypeInfo().Assembly)))
.AddTransient<IMapper>(sp => new Mapper(sp.GetRequiredService<AutoMapper.IConfigurationProvider>(), sp.GetService))
.BuildServiceProvider();
//Call the repository
ISchoolRepository repository = serviceProvider.GetRequiredService<ISchoolRepository>();
ICollection<StudentModel> list = Task.Run(() => repository.GetItemsAsync<StudentModel, Student>()).Result;
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- AutoMapper.Extensions.ExpressionMapping (>= 7.0.2 && < 8.0.0)
- LogicBuilder.Data (>= 7.0.0)
- LogicBuilder.Domain (>= 7.0.0)
- LogicBuilder.Expressions.Utils (>= 7.0.0)
- Microsoft.EntityFrameworkCore.SqlServer (>= 8.0.11)
-
net9.0
- AutoMapper.Extensions.ExpressionMapping (>= 7.0.2 && < 8.0.0)
- LogicBuilder.Data (>= 7.0.0)
- LogicBuilder.Domain (>= 7.0.0)
- LogicBuilder.Expressions.Utils (>= 7.0.0)
- Microsoft.EntityFrameworkCore.SqlServer (>= 9.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.
| Version | Downloads | Last Updated |
|---|---|---|
| 7.0.0 | 350 | 11/25/2024 |
| 6.0.3 | 193 | 11/3/2024 |
| 6.0.2 | 257 | 8/11/2024 |
| 6.0.1 | 238 | 3/28/2024 |
| 6.0.0 | 378 | 12/27/2023 |
| 5.0.12 | 349 | 10/14/2023 |
| 5.0.11 | 162 | 10/14/2023 |
| 5.0.10 | 337 | 8/15/2023 |
| 5.0.9 | 361 | 7/16/2023 |
| 5.0.8 | 528 | 5/10/2023 |
| 5.0.7 | 827 | 10/1/2022 |
| 5.0.6 | 1,643 | 6/16/2022 |
| 5.0.4 | 802 | 4/15/2022 |
| 5.0.3 | 755 | 4/15/2022 |
| 5.0.2 | 530 | 12/24/2021 |
| 5.0.1 | 584 | 12/14/2021 |
| 5.0.0 | 488 | 12/14/2021 |
| 4.1.3 | 650 | 9/8/2021 |
| 4.1.3-preview.3 | 331 | 9/7/2021 |
| 4.1.3-preview.2 | 295 | 8/26/2021 |
| 4.1.3-preview.1 | 1,029 | 8/23/2021 |
| 4.1.3-preview.0 | 307 | 8/7/2021 |
| 4.1.2 | 575 | 5/11/2021 |
| 4.1.1 | 631 | 2/20/2021 |
| 4.1.1-preview.2 | 324 | 2/8/2021 |
| 4.1.1-preview.0 | 295 | 2/5/2021 |
| 4.1.0 | 614 | 1/13/2021 |
| 4.0.2 | 718 | 9/16/2020 |
| 4.0.1 | 411 | 9/8/2020 |
| 4.0.1-preview.1 | 403 | 9/4/2020 |
| 4.0.1-preview.0 | 390 | 8/26/2020 |
| 4.0.0 | 735 | 7/23/2020 |
| 4.0.0-preview02 | 522 | 7/20/2020 |
| 4.0.0-preview01 | 539 | 7/17/2020 |
| 3.0.0 | 789 | 1/3/2020 |
| 2.0.0 | 838 | 8/27/2019 |
| 1.0.0 | 1,032 | 12/30/2018 |
| 1.0.0-preview06 | 799 | 11/8/2018 |
| 1.0.0-preview05 | 894 | 9/18/2018 |
| 1.0.0-preview04 | 911 | 9/17/2018 |
| 1.0.0-preview03 | 929 | 9/17/2018 |
Supporting .NET 9.0.