MongoODM.Net 1.1.2

dotnet add package MongoODM.Net --version 1.1.2
                    
NuGet\Install-Package MongoODM.Net -Version 1.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="MongoODM.Net" Version="1.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MongoODM.Net" Version="1.1.2" />
                    
Directory.Packages.props
<PackageReference Include="MongoODM.Net" />
                    
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 MongoODM.Net --version 1.1.2
                    
#r "nuget: MongoODM.Net, 1.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.
#addin nuget:?package=MongoODM.Net&version=1.1.2
                    
Install MongoODM.Net as a Cake Addin
#tool nuget:?package=MongoODM.Net&version=1.1.2
                    
Install MongoODM.Net as a Cake Tool

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:

  1. 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; }
}

  1. 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"]
      }
    ]
  }
}
  1. Add MongoODM.Net services to the DI container in your application Startup.cs or Program.cs file:
services.AddMongoDbContext(configuration);

  1. Add the MongoRepository<T> to the DI container in your application Startup.cs or Program.cs file:
services.AddMongoRepository<Product>("Database1");
  1. 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 Downloads Last updated
1.1.2 264 1/25/2025
1.1.1 84 1/25/2025
1.1.0 94 1/5/2025
1.0.0 108 1/4/2025

Version 1.1.2 - Initial Release