FmgLib.Orm.DbHelper.MySql 8.0.1

dotnet add package FmgLib.Orm.DbHelper.MySql --version 8.0.1
NuGet\Install-Package FmgLib.Orm.DbHelper.MySql -Version 8.0.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="FmgLib.Orm.DbHelper.MySql" Version="8.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FmgLib.Orm.DbHelper.MySql --version 8.0.1
#r "nuget: FmgLib.Orm.DbHelper.MySql, 8.0.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 FmgLib.Orm.DbHelper.MySql as a Cake Addin
#addin nuget:?package=FmgLib.Orm.DbHelper.MySql&version=8.0.1

// Install FmgLib.Orm.DbHelper.MySql as a Cake Tool
#tool nuget:?package=FmgLib.Orm.DbHelper.MySql&version=8.0.1

DbHelper is a modern object-relational mapper (O/RM) for .NET. It supports updates, and schema migrations. DbHelper works with SQL Server, SQLite, MySQL, PostgreSQL, and Oracle through a provider plugin API.

To use it, you first need to download the FmgLib.Orm.DbHelper.MySql package from Nuget.

You can easily include the package in your application in Program.cs. Example usage is as follows:

using FmgLib.Orm.DbHelper.MySql;

var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllersWithViews();

await builder.Services.DbEntegrationMySqlAsync(builder.Configuration.GetConnectionString("MYSQL")); // OR
// builder.Services.DbEntegrationMySql(builder.Configuration.GetConnectionString("MYSQL")); // Asynchronous and synchronous usage is up to your preference.

var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Home/Error");
    // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
    app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.MapControllerRoute(
    name: "default",
    pattern: "{controller=Home}/{action=Index}/{id?}");

app.Run();

builder.Services.DbEntegrationMySql(builder.Configuration.GetConnectionString("MYSQL")); we ensure integration by adding this line to your code.

Let's create an example entity:

using FmgLib.Orm.Common;

namespace FmgLib.TestWeb.Models;

[Table("PRODUCTS")]
public class Product : IDbEntity
{
    [Column(IsNotNull = true, IsPrimaryKey = true, IsAutoIncrement = true)]
    public int Id { get; set; }

    [Column(IsNotNull = true)]
    public string ProductName { get; set; }

    [Column(IsNotNull = true)]
    public double Price { get; set; }

    public int CategoryId { get; set; }
    public Category? Category { get; set; }
}

[Table("CATEGORIES")]
public class Category : IDbEntity
{
    [Column(true,true,true)]
    public int Id { get; set; }
    public string Name { get; set; }

    public int? SubCategoryId { get; set; }
    public SubCategory? SubCategory { get; set; }
}

[Table("SUBCATEGORIES")]
public class SubCategory : IDbEntity
{
    [Column(true, true, true)]
    public int Id { get; set; }
    public string Name { get; set; }
}

You can specify a special name for the table that will be created on the database side for the entity you created with the table attribute. [Table(TableName="TABLE_NAME")]

We can make special definitions for the column that will be created on the database side for the property you created with the column attribute. [Column(IsNotNull = true, IsPrimaryKey = true, IsAutoIncrement = true)]

The entity to be created must be implemented from the IDbEntity interface. Entities that are not implemented through the IDbEntity interface will not be migrated.

To benefit from these attributes, you will need to download the FmgLib.Orm.Common package from Nuget.

Let's take an example code:

using FmgLib.Develop;
using FmgLib.Orm.DbHelper;
using FmgLib.Orm.DbHelper.MySql;
using FmgLib.TestWeb.Models;
using Microsoft.AspNetCore.Mvc;

namespace FmgLib.TestWeb.Controllers
{
    public class HomeController : Controller
    {
        public HomeController()
        {
        }

        public IActionResult Index()
        {
            List<Product> products = new List<Product>();
            for (int i = 1; i <= 50; i++)
            {
                var item = new Product
                {
                    ProductName = $"Deneme Test {i * 4}",
                    Price = i * 8,
                    CategoryId = i,
                };

                products.Add(item);
            }

            var query = Query.GetQuery<Product>()
                        .Where(x => x.Price > 250)
                        .Include(x => x.Category)
                        .ThenInclude(x => x.SubCategory)
                        .OrderByDescending(x => x.Category.Name)
                        .SelectBy(x => x);

            #region MySql Queries

            #region Sync

            var qqqq = query.AsQueryMySql().First();
            var wwww = query.AsQueryMySql().First(x => x.Id > 10);
            var eeee = query.AsQueryMySql().FirstOrDefault();
            var rrrr = query.AsQueryMySql().FirstOrDefault(x => x.Id > 10);
            var tttt = query.AsQueryMySql().ElementAt(5);
            var yyyy = query.AsQueryMySql().ElementAtOrDefault(5);
            var uuuu = query.AsQueryMySql().Min(x => x.Price);
            var cccc = query.AsQueryMySql().MinBy(x => x.Price);
            var oooo = query.AsQueryMySql().Max(x => x.Price);
            var pppp = query.AsQueryMySql().MaxBy(x => x.Price);
            var llll = query.AsQueryMySql().Sum(x => x.Price);
            var zzzz = query.AsQueryMySql().Average(x => x.Price);
            var aaaa = query.AsQueryMySql().Count();
            var ssss = query.AsQueryMySql().Count(x => x.Price < 600);
            var dddd = query.AsQueryMySql().Any();
            var ffff = query.AsQueryMySql().Any(x => x.Price < 600);
            var gggg = query.AsQueryMySql().Skip(20);
            var hhhh = query.AsQueryMySql().Take(20);
            var xxxx = query.AsQueryMySql().SkipAndTake(10, 20);
            var kkkk = query.AsQueryMySql().ToList();

            #endregion

            #region Async

            var qqqq0 = await query.AsQueryMySql().FirstAsync();
            var wwww0 = await query.AsQueryMySql().FirstAsync(x => x.Id > 10);
            var eeee0 = await query.AsQueryMySql().FirstOrDefaultAsync();
            var rrrr0 = await query.AsQueryMySql().FirstOrDefaultAsync(x => x.Id > 10);
            var tttt0 = await query.AsQueryMySql().ElementAtAsync(5);
            var yyyy0 = await query.AsQueryMySql().ElementAtOrDefaultAsync(5);
            var uuuu0 = await query.AsQueryMySql().MinAsync(x => x.Price);
            var cccc0 = await query.AsQueryMySql().MinByAsync(x => x.Price);
            var oooo0 = await query.AsQueryMySql().MaxAsync(x => x.Price);
            var pppp0 = await query.AsQueryMySql().MaxByAsync(x => x.Price);
            var llll0 = await query.AsQueryMySql().SumAsync(x => x.Price);
            var zzzz0 = await query.AsQueryMySql().AverageAsync(x => x.Price);
            var aaaa0 = await query.AsQueryMySql().CountAsync();
            var ssss0 = await query.AsQueryMySql().CountAsync(x => x.Price < 600);
            var dddd0 = await query.AsQueryMySql().AnyAsync();
            var ffff0 = await query.AsQueryMySql().AnyAsync(x => x.Price < 600);
            var gggg0 = await query.AsQueryMySql().SkipAsync(20);
            var hhhh0 = await query.AsQueryMySql().TakeAsync(20);
            var xxxx0 = await query.AsQueryMySql().SkipAndTakeAsync(10, 20);
            var kkkk0 = await query.AsQueryMySql().ToListAsync();

            #endregion

            #endregion

            #region MySql Commands

            #region Sync

            var insertr = Command
                .Insert(new Product
                {
                    ProductName = "One item insert test",
                    Price = 1234,
                    CategoryId = 234
                })
                .AsCommandMySql()
                .Save();

            var insertrMulti = Command
                .InsertRange(products)
                .AsCommandMySql()
                .Save();

            var updater = Command
                .Update(new Product
                {
                    ProductName = "222 TEST DENEME 22",
                    Price = 6134,
                    CategoryId = 155
                }, x => x.Id == 102)
                .AsCommandMySql()
                .Save();

            var deleter = Command
                .Delete<Product>(x => x.Id == 102)
                .AsCommandMySql()
                .Save();

            #endregion

            #region Async

            var insertr0 = await Command
                .Insert(new Product
                {
                    ProductName = "One item insert test",
                    Price = 1234,
                    CategoryId = 234
                })
                .AsCommandMySql()
                .SaveAsync();

            var insertrMulti0 = await Command
                .InsertRange(products)
                .AsCommandMySql()
                .SaveAsync();

            var updater0 = await Command
                .Update(new Product
                {
                    ProductName = "222 TEST DENEME 22",
                    Price = 6134,
                    CategoryId = 155
                }, x => x.Id == 102)
                .AsCommandMySql()
                .SaveAsync();

            var deleter0 = await Command
                .Delete<Product>(x => x.Id == 102)
                .AsCommandMySql()
                .SaveAsync();

            #endregion

            #endregion

            return View();
        }
    }
}
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
8.0.1 115 1/19/2024
3.0.1 186 11/8/2023
3.0.0 120 10/20/2023
2.0.6.2 118 10/18/2023
2.0.6.1 109 10/8/2023
2.0.6 124 10/3/2023
1.0.4.1 115 9/30/2023