VOOZH about

URL: https://www.nuget.org/packages/ManagedCode.Database.ZoneTree/

⇱ NuGet Gallery | ManagedCode.Database.ZoneTree 2.0.3




👁 Image
ManagedCode.Database.ZoneTree 2.0.3

Prefix Reserved
dotnet add package ManagedCode.Database.ZoneTree --version 2.0.3
 
 
NuGet\Install-Package ManagedCode.Database.ZoneTree -Version 2.0.3
 
 
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="ManagedCode.Database.ZoneTree" Version="2.0.3" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ManagedCode.Database.ZoneTree" Version="2.0.3" />
 
Directory.Packages.props
<PackageReference Include="ManagedCode.Database.ZoneTree" />
 
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 ManagedCode.Database.ZoneTree --version 2.0.3
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ManagedCode.Database.ZoneTree, 2.0.3"
 
 
#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 ManagedCode.Database.ZoneTree@2.0.3
 
 
#: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=ManagedCode.Database.ZoneTree&version=2.0.3
 
Install as a Cake Addin
#tool nuget:?package=ManagedCode.Database.ZoneTree&version=2.0.3
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

👁 img|300x200

Database

👁 .NET
👁 Coverage Status
👁 nuget
👁 CodeQL

| Version | Package | Description | | ------- | ------- | ----------- | |👁 NuGet Package
| ManagedCode.Database.Core | Core | |👁 NuGet Package
| ManagedCode.Database.AzureTables | AzureTable | |👁 NuGet Package
| ManagedCode.Database.Cosmos | Cosmos DB | |👁 NuGet Package
| ManagedCode.Database.LiteDB | LiteDB | |👁 NuGet Package
| ManagedCode.Database.MongoDB | MongoDB | |👁 NuGet Package
| ManagedCode.Database.SQLite | SQLite |

Introduction

This library provides a unified interface for working with a variety of different document-oriented NoSQL databases. With this library, you can easily switch between different databases without having to change your code, making it easy to experiment with different options and find the best solution for your needs.

Motivation

Document-oriented NoSQL databases are a popular choice for many applications because of their flexibility and ease of use. However, each database has its own unique syntax and features, making it difficult to switch between them. This library aims to solve this problem by providing a consistent interface for working with multiple document-oriented NoSQL databases.

Features

  • Provides a single, unified interface for working with multiple document-oriented NoSQL databases.
  • Allows you to easily switch between different databases without having to change your code.
  • Makes it easy to experiment with different options and find the best solution for your needs.

Usage

To use the library, simply import it and initialize a client for the database you want to use.

Contributing

We welcome contributions to this project. If you have an idea for a new feature or improvement, please open an issue to discuss it. If you want to submit a pull request, please make sure to follow the contribution guidelines and include tests for your changes.


OUTDATED--

Repository pattern implementation for C#.

A universal repository for working with multiple databases:

  • InMemory
  • Azure Tables
  • CosmosDB
  • LiteDB
  • SQLite
  • MSSQL
  • PostgreSQL

General concept

We don't think you can hide the real database completely behind abstractions, so I recommend using your interfaces that will lend IReposity of the right type. And do the same with the direct implementation.

// declare the model as a descendant of the base type.
public class SomeModel : IItem<T>
{

}
// then create an interface
public interface ISomeRepository : IRepository<TId, TItem> where TItem : IItem<TId>
{
}
// create a class inherited from a repository of the desired type
public class SomeRepository : BaseRepository<TId, TItem> where TItem : class, IItem<TId>, new()
{
}

And then add your interface and dependency configuration class.

services
 .AddTransient<ISomeRepository, SomeRepository>()

This is to define the id type, and the object itself.


Azure Table

// declare the model as a descendant of the base type.
public class SomeModel : AzureTableItem
{

}


// then create an interface
public interface ISomeRepository : IAzureTableRepository<SomeModel>
{
}


// create a class inherited from a repository of the desired type
public class SomeRepository : AzureTableRepository<SomeModel>, ISomeRepository
{
 public SomeRepository(ILogger<SomeRepository> logger, IConfiguration config) : base(logger, 
 new AzureTableRepositoryOptions
 {
 ConnectionString = "connectionString"
 })
 {
 }
}

CosmosDB

// declare the model as a descendant of the base type.
public class SomeModel : CosmosDbItem
{

}


// then create an interface
public interface ISomeRepository : ICosmosDbRepository<SomeModel>
{
}


// create a class inherited from a repository of the desired type
public class SomeRepository : CosmosDbRepository<SomeModel>, ISomeRepository
{
 public SomeRepository(ILogger<SomeRepository> logger, IConfiguration config) : base(logger, 
 new CosmosDbRepositoryOptions
 {
 ConnectionString = "connectionString"
 })
 {
 }
}

LiteDB

// declare the model as a descendant of the base type.
public class SomeModel : LiteDbItem<string>
{

}


// then create an interface
public interface ISomeRepository : ILiteDbRepository<string, SomeModel>
{
}


// create a class inherited from a repository of the desired type
public class SomeRepository : LiteDbRepository<SomeModel>, ISomeRepository
{
 public SomeRepository(ILogger<SomeRepository> logger, IConfiguration config) : base(logger, 
 new LiteDbRepositoryOptions
 {
 ConnectionString = "connectionString"
 })
 {
 }
}

MongoDB

// declare the model as a descendant of the base type.
public class SomeModel : MongoDbItem<string>
{

}


// then create an interface
public interface ISomeRepository : IMongoDbRepository<SomeModel>
{
}


// create a class inherited from a repository of the desired type
public class SomeRepository : MongoDbRepository<SomeModel>, ISomeRepository
{
 public SomeRepository(ILogger<SomeRepository> logger, IConfiguration config) : base(logger, 
 new LiteDbRepositoryOptions
 {
 ConnectionString = "connectionString"
 })
 {
 }
}

SQLite

// declare the model as a descendant of the base type.
public class SomeModel : SQLiteItem
{

}


// then create an interface
public interface ISomeRepository : ISQLiteRepository<string, SomeModel>
{
}


// create a class inherited from a repository of the desired type
public class SomeRepository : SQLiteRepository<SomeModel>, ISomeRepository
{
 public SomeRepository(ILogger<SomeRepository> logger, IConfiguration config) : base(logger, 
 new SQLiteRepositoryOptions
 {
 ConnectionString = "connectionString"
 })
 {
 }
}
Product Versions Compatible and additional computed target framework versions.
.NET net7.0 net7.0 is compatible.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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

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
2.0.3 365 8/7/2023
2.0.2 305 4/18/2023
2.0.1 349 12/11/2022