Myrtle.AspNetCore.DataProtection.Keys
1.2.0
See the version list below for details.
dotnet add package Myrtle.AspNetCore.DataProtection.Keys --version 1.2.0
NuGet\Install-Package Myrtle.AspNetCore.DataProtection.Keys -Version 1.2.0
<PackageReference Include="Myrtle.AspNetCore.DataProtection.Keys" Version="1.2.0" />
paket add Myrtle.AspNetCore.DataProtection.Keys --version 1.2.0
#r "nuget: Myrtle.AspNetCore.DataProtection.Keys, 1.2.0"
// Install Myrtle.AspNetCore.DataProtection.Keys as a Cake Addin #addin nuget:?package=Myrtle.AspNetCore.DataProtection.Keys&version=1.2.0 // Install Myrtle.AspNetCore.DataProtection.Keys as a Cake Tool #tool nuget:?package=Myrtle.AspNetCore.DataProtection.Keys&version=1.2.0
Myrtle
Myrtle is a comprehensive collection of useful extensions and configurations for the official MongoDB C# driver. It aims to simplify and enhance the experience of working with MongoDB in .NET applications.
Features
- Enhanced Configuration: Simplified setup for MongoDB with various conventions and serialization options.
- Dependency Injection: Easy integration with Microsoft.Extensions.DependencyInjection for ASP.NET Core applications.
- Repository Pattern: Generic repository implementation for streamlined data access.
- Data Protection: Support for storing ASP.NET Core Data Protection keys in MongoDB.
- Extensible Architecture: Modular design allowing for easy addition of new features and configurations.
Packages
Installation
You can install Myrtle packages via NuGet Package Manager or .NET CLI.
dotnet add package Myrtle
dotnet add package Myrtle.Extensions.MicrosoftDependencyInjection
dotnet add package Myrtle.AspNetCore.DataProtection.Keys
Key Interfaces and Abstractions
Myrtle provides several key interfaces and abstractions to simplify working with MongoDB:
IMongoConnection
: Represents a connection to a MongoDB server.IMongoDatabaseContext
: Provides access to a specific MongoDB database.IMongoCollectionContext<TDocument>
: Represents a MongoDB collection for a specific document type.IMongoRepository<TDocument, TId>
: Defines a generic repository pattern for MongoDB operations.IMongoConfigurationRegistry
: Allows registration of custom MongoDB configurations.IMongoConfiguration
: Represents a specific MongoDB configuration.
Usage
Basic Setup
- Add MongoDB services to your application's service collection:
services.AddMongoDB(options =>
{
options.ConnectionString = "mongodb://localhost:27017";
options.DatabaseName = "MyDatabase";
});
- Configure MongoDB with custom configurations:
services.AddMongoDBConfigurations(registry =>
{
registry.AddUtcDateTimeSerialization()
.AddDecimalSerialization()
.AddEnumRepresentation()
.AddIgnoreExtraElements()
.AddAllConfigurations(); // Adds all available configurations
});
Using the Repository Pattern
- Define your aggregate root class:
public class User
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
}
- Create a custom repository by inheriting from
MongoRepository<TDocument, TId>
:
public class UserRepository : MongoRepository<User, Guid>, IUserRepository
{
public UserRepository(IMongoCollectionContext<User> collectionContext)
: base(collectionContext)
{
}
public async Task<User> FindByEmailAsync(string email)
{
var filter = Builders<User>.Filter.Eq(u => u.Email, email);
return await Collection.Find(filter).FirstOrDefaultAsync();
}
}
public interface IUserRepository : IMongoRepository<User, Guid>
{
Task<User> FindByEmailAsync(string email);
}
- Register your custom repository in the dependency injection container:
services.AddScoped<IUserRepository, UserRepository>();
- Use the repository in your services:
public class UserService
{
private readonly IUserRepository _userRepository;
public UserService(IUserRepository userRepository)
{
_userRepository = userRepository;
}
public async Task<User> GetUserByIdAsync(Guid id)
{
return await _userRepository.GetByIdAsync(id);
}
public async Task<User> GetUserByEmailAsync(string email)
{
return await _userRepository.FindByEmailAsync(email);
}
public async Task AddUserAsync(User user)
{
await _userRepository.AddAsync(user);
}
}
Data Protection Key Storage
To configure ASP.NET Core Data Protection to store keys in MongoDB:
services.AddDataProtection()
.PersistKeysToMongoDb(mongoClient, "MyDatabase", "DataProtectionKeys");
License
Myrtle is licensed under the MIT License. See the LICENSE file for details.
Support
If you encounter any issues or have questions, please open an issue on GitHub.
Product | Versions 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. |
-
net8.0
- Microsoft.AspNetCore.DataProtection (>= 8.0.7)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.1)
- MongoDB.Driver (>= 2.27.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
v1.2.0 (2024-07-31)
⦁ Add 'TimeZoneInfoSerializerConfiguration' to configure the serialization of TimeZoneInfo
v1.1.0 (2024-07-13)
⦁ Register `IMongoConnectionStringProvider` and `IMongoDatabaseNameProvider` in DI
v1.0.2 (2024-07-13)
⦁ Renamed registry extension methods to be more clear they are registering mongo configurations
v1.0.1 (2024-07-12)
⦁ Added `IMongoDatabase` and `IMongoClient` to the service collection
⦁ Removed redundant extension method from `MongoConfigurationRegistryExtensions`
⦁ Add the README to nuget packages
v1.0.0 (2024-07-12)
⦁ Added comprehensive MongoDB configuration options
⦁ Introduced IMongoRepository<TDocument, TId> for flexible repository pattern implementation
⦁ Enhanced integration with Microsoft.Extensions.DependencyInjection
⦁ Improved documentation and README
⦁ Added source link support for better debugging experience
⦁ Centralized common properties in Directory.Build.props
v0.2.0
⦁ Myrtle.AspNetCore.DataProtection.Keys
⦁ Add two PersistKeysToMongoDb overloads to support getting mongo collection and mongo database using IServiceProvider
v0.1.0
⦁ Add Myrtle.AspNetCore.DataProtection.Keys