![]() |
VOOZH | about |
dotnet add package Franz.Common.EntityFramework.MariaDB --version 2.2.7
NuGet\Install-Package Franz.Common.EntityFramework.MariaDB -Version 2.2.7
<PackageReference Include="Franz.Common.EntityFramework.MariaDB" Version="2.2.7" />
<PackageVersion Include="Franz.Common.EntityFramework.MariaDB" Version="2.2.7" />Directory.Packages.props
<PackageReference Include="Franz.Common.EntityFramework.MariaDB" />Project file
paket add Franz.Common.EntityFramework.MariaDB --version 2.2.7
#r "nuget: Franz.Common.EntityFramework.MariaDB, 2.2.7"
#:package Franz.Common.EntityFramework.MariaDB@2.2.7
#addin nuget:?package=Franz.Common.EntityFramework.MariaDB&version=2.2.7Install as a Cake Addin
#tool nuget:?package=Franz.Common.EntityFramework.MariaDB&version=2.2.7Install as a Cake Tool
A library within the Franz Framework designed to extend Entity Framework Core support for MariaDB using the Pomelo.EntityFrameworkCore.MySql provider. This package simplifies the configuration and integration of MariaDB with EF Core in .NET applications.
Pomelo.EntityFrameworkCore.MySql for robust MariaDB support.ServiceCollectionExtensions to streamline dependency injection for MariaDB contexts.-Current Version: v2.2.7
This package relies on:
Since this package is hosted privately, configure your NuGet client:
dotnet nuget add source "https://your-private-feed-url" \
--name "AzurePrivateFeed" \
--username "YourAzureUsername" \
--password "YourAzurePassword" \
--store-password-in-clear-text
Install the package:
dotnet add package Franz.Common.EntityFramework.MariaDB
Define a DbContext for MariaDB integration:
using Microsoft.EntityFrameworkCore;
public class MariaDbContext : DbContext
{
public MariaDbContext(DbContextOptions<MariaDbContext> options) : base(options) { }
public DbSet<Order> Orders { get; set; }
}
Use ServiceCollectionExtensions to register MariaDB contexts:
using Franz.Common.EntityFramework.MariaDB.Extensions;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMariaDbContext<MariaDbContext>(options =>
options.UseMySql(
"Server=localhost;Database=MyDatabase;User=root;Password=my_password;",
new MariaDbServerVersion(new Version(10, 5, 12)) // Specify your MariaDB version
));
}
}
This package integrates with Franz.Common.EntityFramework for managing multiple databases, enabling seamless operations across different database types.
The Franz.Common.EntityFramework.MariaDB package integrates seamlessly with:
Ensure these dependencies are installed to fully leverage the library's capabilities.
This package is part of a private framework. Contributions are limited to the internal development team. If you have access, follow these steps:
This library is licensed under the MIT License. See the LICENSE file for more details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 2 NuGet packages that depend on Franz.Common.EntityFramework.MariaDB:
| Package | Downloads |
|---|---|
|
Franz.Common.Messaging.EntityFramework
Shared utility library for the Franz Framework. |
|
|
Franz.Common.Http.EntityFramework
Shared utility library for the Franz Framework. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.2.7 | 115 | 6/7/2026 |
| 2.2.6 | 122 | 6/6/2026 |
| 2.2.5 | 118 | 6/4/2026 |
| 2.2.4 | 115 | 6/3/2026 |
| 2.2.3 | 110 | 6/2/2026 |
| 2.2.2 | 112 | 6/2/2026 |
| 2.2.1 | 138 | 5/24/2026 |
| 2.1.4 | 120 | 4/27/2026 |
| 2.1.3 | 119 | 4/26/2026 |
| 2.1.2 | 113 | 4/26/2026 |
| 2.1.1 | 121 | 4/22/2026 |
| 2.0.2 | 123 | 3/30/2026 |
| 2.0.1 | 123 | 3/29/2026 |
| 1.7.8 | 124 | 3/2/2026 |
| 1.7.7 | 129 | 1/31/2026 |
| 1.7.6 | 137 | 1/22/2026 |
| 1.7.5 | 138 | 1/10/2026 |
| 1.7.4 | 139 | 12/27/2025 |
| 1.7.3 | 218 | 12/22/2025 |
| 1.7.2 | 219 | 12/21/2025 |