CSESoftware.Repository.EntityFrameworkCore 3.0.0-beta03

This is a prerelease version of CSESoftware.Repository.EntityFrameworkCore.
dotnet add package CSESoftware.Repository.EntityFrameworkCore --version 3.0.0-beta03
                    
NuGet\Install-Package CSESoftware.Repository.EntityFrameworkCore -Version 3.0.0-beta03
                    
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="CSESoftware.Repository.EntityFrameworkCore" Version="3.0.0-beta03" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CSESoftware.Repository.EntityFrameworkCore" Version="3.0.0-beta03" />
                    
Directory.Packages.props
<PackageReference Include="CSESoftware.Repository.EntityFrameworkCore" />
                    
Project file
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 CSESoftware.Repository.EntityFrameworkCore --version 3.0.0-beta03
                    
#r "nuget: CSESoftware.Repository.EntityFrameworkCore, 3.0.0-beta03"
                    
#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 CSESoftware.Repository.EntityFrameworkCore@3.0.0-beta03
                    
#: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=CSESoftware.Repository.EntityFrameworkCore&version=3.0.0-beta03&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CSESoftware.Repository.EntityFrameworkCore&version=3.0.0-beta03&prerelease
                    
Install as a Cake Tool

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.

Version Downloads Last Updated
3.0.0-beta03 101 3/5/2026
2.4.0 4,270 12/14/2023
2.3.0 915 9/6/2023
2.2.0 3,110 9/22/2022
2.1.1 5,101 3/8/2021
2.1.0 2,237 2/25/2021
2.0.1 1,201 8/25/2020
2.0.0 1,077 7/23/2020
1.0.1 1,024 7/22/2020
1.0.0 1,096 5/2/2020