DotaCore.MongoDB
15.2.1
dotnet add package DotaCore.MongoDB --version 15.2.1
NuGet\Install-Package DotaCore.MongoDB -Version 15.2.1
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="DotaCore.MongoDB" Version="15.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotaCore.MongoDB --version 15.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DotaCore.MongoDB, 15.2.1"
#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 DotaCore.MongoDB as a Cake Addin #addin nuget:?package=DotaCore.MongoDB&version=15.2.1 // Install DotaCore.MongoDB as a Cake Tool #tool nuget:?package=DotaCore.MongoDB&version=15.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DotaCore.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(object key, T item) { }
public Task UpdateAsync(object key, T item) { }
public void UpdatePartial(object key, object item) { }
public Task UpdatePartialAsync(object key, 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 | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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.
-
net5.0
- DotaCore.Repositories (>= 15.2.1)
- MongoDB.Driver (>= 2.12.1)
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 |
---|---|---|
15.2.1 | 336 | 4/4/2021 |