DotNetCore.MongoDB 18.7.0

dotnet add package DotNetCore.MongoDB --version 18.7.0
NuGet\Install-Package DotNetCore.MongoDB -Version 18.7.0
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="DotNetCore.MongoDB" Version="18.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotNetCore.MongoDB --version 18.7.0
#r "nuget: DotNetCore.MongoDB, 18.7.0"
#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 DotNetCore.MongoDB as a Cake Addin
#addin nuget:?package=DotNetCore.MongoDB&version=18.7.0

// Install DotNetCore.MongoDB as a Cake Tool
#tool nuget:?package=DotNetCore.MongoDB&version=18.7.0

DotNetCore.MongoDB

Context

IMongoContext

public interface IMongoContext
{
    IMongoDatabase Database { get; }
}

MongoContext

public abstract class MongoContext : IMongoContext
{
    public MongoContext(string connectionString) { }

    public IMongoDatabase Database { get; }
}

Document

IDocument

public interface IDocument
{
    ObjectId Id { get; set; }
}

Document

public abstract class Document : IDocument
{
    [BsonExtraElements]
    public BsonDocument ExtraElements { get; set; }

    public ObjectId Id { get; set; }
}

MongoCommandRepository

public class MongoCommandRepository<T> : ICommandRepository<T> where T : class
{
    public MongoCommandRepository(IMongoContext context) { }

    public void Add(T item) { }

    public Task AddAsync(T item) { }

    public void AddRange(IEnumerable<T> items) { }

    public Task AddRangeAsync(IEnumerable<T> items) { }

    public void Delete(object key) { }

    public void Delete(Expression<Func<T, bool>> where) { }

    public Task DeleteAsync(object key) { }

    public Task DeleteAsync(Expression<Func<T, bool>> where) { }

    public void Update(T item) { }

    public Task UpdateAsync(T item) { }

    public void UpdatePartial(object item) { }

    public Task UpdatePartialAsync(object item) { }

    public void UpdateRange(IEnumerable<T> items) { }

    public Task UpdateRangeAsync(IEnumerable<T> items) { }
}

MongoQueryRepository

public class MongoQueryRepository<T> : IQueryRepository<T> where T : class
{
    public MongoQueryRepository(IMongoContext context) { }

    public IQueryable<T> Queryable { get; };

    public bool Any() { }

    public bool Any(Expression<Func<T, bool>> where) { }

    public Task<bool> AnyAsync() { }

    public Task<bool> AnyAsync(Expression<Func<T, bool>> where) { }

    public long Count() { }

    public long Count(Expression<Func<T, bool>> where) { }

    public Task<long> CountAsync() { }

    public Task<long> CountAsync(Expression<Func<T, bool>> where) { }

    public T Get(object key) { }

    public Task<T> GetAsync(object key) { }

    public IEnumerable<T> List() { }

    public async Task<IEnumerable<T>> ListAsync() { }
}

MongoRepository

public class MongoRepository<T> : Repository<T> where T : class
{
    public MongoRepository(IMongoContext context) : base(new MongoCommandRepository<T>(context), new MongoQueryRepository<T>(context)) { }
}
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. 
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
18.7.0 225 3/6/2024