VOOZH about

URL: https://www.nuget.org/packages/DataExplorer/

⇱ NuGet Gallery | DataExplorer 4.1.2




DataExplorer 4.1.2

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

DataExplorer

👁 Build Status

Library featuring a few popular patterns in regard to working with data in .NET offering abstractions and implementations for EF Core and MongoDb.

Utilizes Autofac thus Autofac is required and a functional result approach for failure-prone operations.

Features

  • Full fledged base entity definition with soft deletion and snowflake ID support
  • Specification pattern encapsulating query LINQ logic avoiding bloated repositories
  • Read-only and CRUD versions of repositories and data services
  • Data services with mapping support (currently requires setting AutoMapper up)
  • Fully abstracted and unit test ready including EF Core's DbContext
  • Only asynchronous operations
  • Supports decorators, adapters and interceptors via Autofac's methods
  • MongoDb support via MongoDb.Entities
  • EF Core caching via a caching interceptor offered by EFCoreSecondLevelCacheInterceptor
  • In-memory query evaluation through specifications

Installation

Since the library utilizes Autofac, base Autofac configuration is required - Autofac's docs.

To register the library services with the DI container use the ContainerBuilder extension method provided by the library and register one or both offered sets of services:

builder.AddDataExplorer(options => 
{
 options.AddEfCore();
 options.AddMongoDb();
});

Description

Detailed descriptions are provided within EfCore and MongoDb directories (packages).

Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  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 is compatible.  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 (4)

Showing the top 4 NuGet packages that depend on DataExplorer:

Package Downloads
DataExplorer.EfCore

Library featuring an opinionated, reusable data access layer offering abstractions and implementations for SQL storages based on EF Core.

DataExplorer.MongoDb

Library featuring an opinionated, reusable data access layer for MongoDb based on MongoDB.Entities.

DataExplorer.Extensions.AutoMapper

Library providing AutoMapper integration for DataExplorer.

DataExplorer.Extensions.Autofac

Library providing Autofac integration for DataExplorer.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.1.2 353 7/3/2025
4.1.1 327 7/3/2025
4.1.0 310 7/3/2025
4.0.0 336 5/26/2025
3.3.0 256 5/23/2025
3.2.1 310 8/2/2024
3.2.0 252 8/2/2024
3.1.1 298 7/23/2024
3.1.0 355 7/11/2024
3.0.5 528 2/16/2024
3.0.4 508 1/25/2024
3.0.3 596 1/4/2024
3.0.2 671 11/22/2023
3.0.1 565 11/21/2023
3.0.0 559 11/20/2023
2.2.12 728 9/12/2023
2.2.11 680 9/1/2023
2.2.10 718 8/31/2023
2.2.9 866 8/30/2023
2.2.8 938 8/18/2023
Loading failed