RepoDb 1.0.9

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package RepoDb --version 1.0.9
NuGet\Install-Package RepoDb -Version 1.0.9
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="RepoDb" Version="1.0.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RepoDb --version 1.0.9
#r "nuget: RepoDb, 1.0.9"
#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.
// Install RepoDb as a Cake Addin
#addin nuget:?package=RepoDb&version=1.0.9

// Install RepoDb as a Cake Tool
#tool nuget:?package=RepoDb&version=1.0.9

ReadMe

Click here for the read-me.

Documentation

Click here for the documentation.

Goal

We aim to let .Net developers limit the implementation of SQL Statements within the application. We believe that as a .Net developer, one should only focus on .Net and Business scenario development and not on writing repetitive SQL Statements. Ofcourse, unless you are working closely with SQL Server Management Studio.

Notes

  • We will keep it simple as possible (KISS principle)
  • We will make it fast as possible
  • We will never make complex implementations (specially for Queries and Methods)
  • We will avoid developing complex JOINs (until it is needed and requested by the community)
  • We will never ever do try-catch inside the library
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (17)

Showing the top 5 NuGet packages that depend on RepoDb:

Package Downloads
RepoDb.SqlServer The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A hybrid .NET ORM library for SQL Server.

RepoDb.SqlServer.BulkOperations The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

An extension library that contains the official Bulk Operations of RepoDb for SQL Server.

RepoDb.PostgreSql The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A hybrid .NET ORM library for PostgreSQL.

RepoDb.MySql The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A hybrid .NET ORM library for MySQL (using MySql.Data).

RepoDb.PostgreSql.BulkOperations The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

An extension library that contains the official Bulk Operations of RepoDb for PostgreSQL.

GitHub repositories (6)

Showing the top 5 popular GitHub repositories that depend on RepoDb:

Repository Stars
mikependon/RepoDB
A hybrid ORM library for .NET.
itlibrium/DDD-starter-dotnet
Sample implementation and comparison of various approaches to building DDD applications. Useful as a baseline to quickly start a DDD dot net project.
TortugaResearch/DotNet-ORM-Cookbook
This repository is meant to show how to perform common tasks using C# with variety of ORMs.
bcssov/IronyModManager
Mod Manager for Paradox Games. Official Discord: https://discord.gg/t9JmY8KFrV
FransBouma/RawDataAccessBencher
Bench code which tests entity materialization speed of various .NET data access / ORM implementations
Version Downloads Last updated
1.13.2-alpha1 488 2/26/2024
1.13.1 123,757 3/16/2023
1.13.0 70,166 11/2/2022
1.12.10 300,594 2/18/2022
1.12.9 30,409 9/27/2021
1.12.8 80,951 9/23/2021
1.12.7 167,905 2/6/2021
1.12.6 4,523 1/13/2021
1.12.5 9,598 12/30/2020
1.12.4 67,556 10/3/2020
1.12.3 3,036 9/29/2020
1.12.2 1,279 9/28/2020
1.12.1 1,346 9/25/2020
1.12.0 4,362 9/24/2020
1.3.2-alpha1 252 2/26/2024

Updates (v1.0.9):
- Renamed ICache.Has to ICache.Contains
- Removed ICache.GetAll and implement the IEnumerable interface instead
- Optimized the mapping for SqlBulkCopy for 'BulkInsert'