MongoODM.Net
1.1.2
dotnet add package MongoODM.Net --version 1.1.2
NuGet\Install-Package MongoODM.Net -Version 1.1.2
<PackageReference Include="MongoODM.Net" Version="1.1.2" />
<PackageVersion Include="MongoODM.Net" Version="1.1.2" />
<PackageReference Include="MongoODM.Net" />
paket add MongoODM.Net --version 1.1.2
#r "nuget: MongoODM.Net, 1.1.2"
#addin nuget:?package=MongoODM.Net&version=1.1.2
#tool nuget:?package=MongoODM.Net&version=1.1.2
MongoODM.Net
MongoODM.Net is a .NET Object-Document Mapping (ODM) library designed to simplify the interaction between .NET applications and MongoDB databases. It provides a seamless way to map .NET objects to MongoDB documents, abstracting away the complexities of raw MongoDB queries and offering a more intuitive API for CRUD operations.
Features
- Entity Mapping: Define entity classes that represent MongoDB documents and map them to collections.
- CRUD Operations: Perform Create, Read, Update, and Delete operations on MongoDB documents using a simple API.
- Querying: Execute queries on MongoDB collections using LINQ expressions.
- Transactions: Perform multiple operations in a single transaction using the
Transaction
class. - Aggregation: Execute aggregation pipelines on MongoDB collections using the
Aggregate
class. - Indexes: Define indexes on MongoDB collections to improve query performance.
- Change Streams: Listen for changes in MongoDB collections using change streams.
Requirements
- .NET 6.0 or later
Installation
You can install the latest version of MongoODM.Net via NuGet. Run the following command in the Package Manager Console:
dotnet add package MongoODM.Net
Getting Started
Here's a quick example to get you started with MongoODM.Net:
- Define an entity class that represents a MongoDB document:
public class Product
{
public string Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
}
or
[CollectionName("Products")]
public class Product
{
public string Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
}
- Add your MongoDB connection string to the appsettings.json file:
{
"MongodbConfiguration": {
"Connections": [
{
"ConnectionString": "mongodb://localhost:27017",
"Databases": ["Database1","Database2"]
},
{
"ConnectionString": "mongodb://localhost:27018",
"Databases": ["Database3"]
}
]
}
}
- Add MongoODM.Net services to the DI container in your application
Startup.cs
orProgram.cs
file:
services.AddMongoDbContext(configuration);
- Add the
MongoRepository<T>
to the DI container in your applicationStartup.cs
orProgram.cs
file:
services.AddMongoRepository<Product>("Database1");
- Perform CRUD operations on MongoDB documents using the
MongoRepository<T>
in your service or controller:
public class ProductService: IProductService
{
private readonly MongoRepository<Product> _productRepository;
public ProductService(MongoRepository<Product> productRepository)
{
_productRepository = productRepository;
}
public async Task CreateProduct(Product product)
{
await _productRepository.AddAsync(product);
}
public async Task<Product> GetProductById(string id)
{
return await _productRepository.GetByIdAsync(id);
}
public async Task UpdateProduct(Product product)
{
await _productRepository.UpdateAsync(product);
}
public async Task DeleteProduct(string id)
{
await _productRepository.DeleteByIdAsync(id);
}
}
Find more examples of the use case in the github repository
git clone git@github.com:BiliksuunSamuel/MongoODM.Net.Example.git
License
This project is licensed under the MIT License.
Support
For any questions or issues, please open an issue on GitHub or contact us at <a href="mailto:developer.biliksuun@gmail.com"> developer.biliksuun@gmail.com</a>.
Authors
- Samuel Biliksuun
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net6.0
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.0)
- MongoDB.Bson (>= 3.1.0)
- MongoDB.Driver (>= 3.1.0)
-
net8.0
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 7.0.0)
- Microsoft.Extensions.Options (>= 7.0.0)
- MongoDB.Bson (>= 3.1.0)
- MongoDB.Driver (>= 3.1.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on MongoODM.Net:
Package | Downloads |
---|---|
KafkaConsumerTemplateV8
A .NET project template for Kafka consumer applications. |
|
KafkaConsumerMongoDbTemplateV8
A .NET project template for quickly setting up Kafka consumer applications. This template simplifies the process of building robust Kafka consumer services with essential configurations and features like message consumption, dependency injection, and graceful shutdown handling. Perfect for developers working with Apache Kafka in .NET. |
|
DotNetApiMongoDbTemplateV8
DotnetApiMongoDbTemplateV8 is a comprehensive, ready-to-use template for building modern .NET APIs with MongoDB. Designed to simplify and accelerate API development, this template integrates essential tools and follows best practices, making it ideal for developers looking for a solid foundation for their projects. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version 1.1.2 - Initial Release