DotNetCore.MongoDB
19.1.0
There is a newer version of this package available.
See the version list below for details.
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 DotNetCore.MongoDB --version 19.1.0
NuGet\Install-Package DotNetCore.MongoDB -Version 19.1.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="19.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotNetCore.MongoDB --version 19.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DotNetCore.MongoDB, 19.1.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=19.1.0 // Install DotNetCore.MongoDB as a Cake Tool #tool nuget:?package=DotNetCore.MongoDB&version=19.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- DotNetCore.Repositories (>= 19.1.0)
- MongoDB.Driver (>= 3.0.0)
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 |
---|---|---|
19.7.0 | 93 | 11/30/2024 |