CSESoftware.Repository.EntityFrameworkCore
3.0.0-beta03
dotnet add package CSESoftware.Repository.EntityFrameworkCore --version 3.0.0-beta03
NuGet\Install-Package CSESoftware.Repository.EntityFrameworkCore -Version 3.0.0-beta03
<PackageReference Include="CSESoftware.Repository.EntityFrameworkCore" Version="3.0.0-beta03" />
<PackageVersion Include="CSESoftware.Repository.EntityFrameworkCore" Version="3.0.0-beta03" />
<PackageReference Include="CSESoftware.Repository.EntityFrameworkCore" />
paket add CSESoftware.Repository.EntityFrameworkCore --version 3.0.0-beta03
#r "nuget: CSESoftware.Repository.EntityFrameworkCore, 3.0.0-beta03"
#:package CSESoftware.Repository.EntityFrameworkCore@3.0.0-beta03
#addin nuget:?package=CSESoftware.Repository.EntityFrameworkCore&version=3.0.0-beta03&prerelease
#tool nuget:?package=CSESoftware.Repository.EntityFrameworkCore&version=3.0.0-beta03&prerelease
CSESoftware.Repository.EntityFrameworkCore
The Entity Framework Core implementation of CSESoftware.Repository.
To use this, create your own DbContext, inherit from the BaseDbContext, and add your DbSets.
public class DbContext : BaseMockDbContext
{
public DbContext(DbContextOptions options) : base(options)
{
}
public DbSet<Pizza> Pizzas { get; set; }
public DbSet<Topping> Toppings { get; set; }
public DbSet<Crust> Crusts { get; set; }
}
All of your entites should inherit from CSESoftware.Core.Entity<>
public class Pizza : BaseEntity<int>
{
public string Name { get; set; }
public double Cost { get; set; }
public int CrustId { get; set; }
public Crust Crust { get; set; }
public int ToppingId { get; set; }
public Topping Topping { get; set; }
}
CSE Software Inc. is a privately held company founded in 1990. CSE develops software, AR/VR, simulation, mobile, and web technology solutions. The company also offers live, 24x7, global help desk services in 110 languages. All CSE teams are U.S. based with experience in multiple industries, including government, military, healthcare, construction, agriculture, mining, and more. CSE Software is a certified women-owned small business. Visit us online at csesoftware.com.
| 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 was computed. 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. |
-
net8.0
- CSESoftware.Core (>= 3.0.0-beta03)
- CSESoftware.Repository (>= 3.0.0-beta03)
- Microsoft.EntityFrameworkCore (>= 8.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 8.0.0)
- Microsoft.Extensions.Logging.Debug (>= 8.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on CSESoftware.Repository.EntityFrameworkCore:
| Package | Downloads |
|---|---|
|
CSESoftware.Repository.SqlBulkRepositoryCore
An Entity Framework Core repository utilizing SqlBulkCopy to perform operations on large datasets. |
GitHub repositories
This package is not used by any popular GitHub repositories.