Galosys.Foundation.SqlSugar 26.5.19.1

dotnet add package Galosys.Foundation.SqlSugar --version 26.5.19.1
                    
NuGet\Install-Package Galosys.Foundation.SqlSugar -Version 26.5.19.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="Galosys.Foundation.SqlSugar" Version="26.5.19.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Galosys.Foundation.SqlSugar" Version="26.5.19.1" />
                    
Directory.Packages.props
<PackageReference Include="Galosys.Foundation.SqlSugar" />
                    
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 Galosys.Foundation.SqlSugar --version 26.5.19.1
                    
#r "nuget: Galosys.Foundation.SqlSugar, 26.5.19.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.
#:package Galosys.Foundation.SqlSugar@26.5.19.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Galosys.Foundation.SqlSugar&version=26.5.19.1
                    
Install as a Cake Addin
#tool nuget:?package=Galosys.Foundation.SqlSugar&version=26.5.19.1
                    
Install as a Cake Tool

Galosys.Foundation.SqlSugar

成熟度: 🟡 可用 — 功能完整,测试或文档可能不完善

SqlSugar ORM 框架集成模块,为 Galosys.Foundation 提供基于 SqlSugar 的数据访问层实现。

简介

Galosys.Foundation.SqlSugar 是 SqlSugar ORM 框架在 Galosys.Foundation 框架中的集成模块。它提供了自动化的数据库连接管理、实体映射、审计字段填充、多租户支持、单元工作模式等企业级功能。

特性

  • 多数据库支持:自动识别并支持 SqlServer、MySql、PostgreSQL、Oracle、SQLite
  • 自动审计字段:自动填充创建时间、修改时间、创建人、修改人等审计字段
  • 多租户支持:基于 IMultiTenancy 接口实现数据隔离
  • 多应用支持:基于 IMultiApplication 接口实现应用级数据隔离
  • 软删除过滤:自动过滤已删除数据(IDeletable 接口)
  • 多种ID生成:支持 Snowflake、ULID、NanoID、UUID 等分布式ID生成策略
  • SQL 日志:自动记录执行的 SQL 语句
  • Snake Case 命名:自动将 PascalCase 属性名转换为 snake_case 列名
  • 仓储模式:提供 SqlSugarRepository<T> 泛型仓储
  • 单元工作模式:提供 IUnitOfWork 接口实现事务管理

安装

<ItemGroup>
  <PackageReference Include="Galosys.Foundation.SqlSugar" Version="x.x.x" />
</ItemGroup>

配置

appsettings.json

{
  "ConnectionStrings": {
    "Default": {
      "ConnectionString": "Server=localhost;Database=mydb;User=root;Password=password;",
      "Provider": "MySqlConnector"
    }
  }
}

支持的数据库 Provider

Provider 数据库类型
system.data.sqlClient / microsoft.data.sqlClient SqlServer
MySqlConnector MySql
Npgsql PostgreSQL
Oracle.ManagedDataAccess.Client Oracle
Microsoft.Data.Sqlite SQLite

使用示例

基本 CRUD 操作

public class ProductService
{
    private readonly SqlSugarRepository<Product> _repository;
    private readonly IUnitOfWork _unitOfWork;
    
    public ProductService(
        SqlSugarRepository<Product> repository,
        IUnitOfWork unitOfWork)
    {
        _repository = repository;
        _unitOfWork = unitOfWork;
    }
    
    // 查询
    public async Task<List<Product>> GetProductsAsync()
    {
        return await _repository.AsQueryable()
            .Where(p => !p.Deleted) // 软删除过滤
            .ToListAsync();
    }
    
    // 新增
    public async Task AddProductAsync(Product product)
    {
        await _repository.InsertAsync(product);
    }
    
    // 更新
    public async Task UpdateProductAsync(Product product)
    {
        await _repository.UpdateAsync(product);
    }
    
    // 删除(软删除)
    public async Task DeleteProductAsync(long id)
    {
        var product = await _repository.GetByIdAsync(id);
        if (product != null)
        {
            product.Deleted = true;
            await _repository.UpdateAsync(product);
        }
    }
}

事务管理

public class OrderService
{
    private readonly SqlSugarRepository<Order> _orderRepo;
    private readonly SqlSugarRepository<OrderItem> _itemRepo;
    private readonly IUnitOfWork _unitOfWork;
    
    public async Task CreateOrderAsync(Order order, List<OrderItem> items)
    {
        await _unitOfWork.BeginTransactionAsync();
        
        try
        {
            await _orderRepo.InsertAsync(order);
            
            foreach (var item in items)
            {
                item.OrderId = order.Id;
                await _itemRepo.InsertAsync(item);
            }
            
            await _unitOfWork.CommitAsync();
        }
        catch
        {
            await _unitOfWork.RollbackAsync();
            throw;
        }
    }
}

实体定义

[Table("products")]
public class Product : FullEntity<long>
{
    [SnowflakeId]
    public new long Id { get; set; }
    
    public string Name { get; set; }
    
    public decimal Price { get; set; }
    
    [CreatedAt]
    public DateTime CreatedAt { get; set; }
    
    [CreatorId]
    public long CreatorId { get; set; }
    
    [LastModifiedAt]
    public DateTime? LastModifiedAt { get; set; }
}

核心类

类名 描述
SqlSugarModule 模块入口,实现 IModule 接口
SqlSugarServiceCollectionExtensions DI 扩展方法,注册 SqlSugar 服务
SqlSugarRepository<T> 泛型仓储,继承自 SimpleClient<T>
SqlSugarUnitOfWork 单元工作实现,提供事务管理

依赖

  • Galosys.Foundation.Data:基础数据模块,提供 IRepositoryIUnitOfWork 等接口
  • Galosys.Foundation.Core:核心模块,提供审计特性、多租户接口、ID生成器等
  • SqlSugarCore:SqlSugar ORM 核心库

自动审计与实体映射

审计字段:模块会自动填充 [SnowflakeId][Ulid][Nanoid][Uuid] 等ID字段,以及 [CreatedAt][CreatorId][CreatorName][LastModifiedAt][LastModifierId][LastModifierName] 等审计字段。

实体映射:支持 [Table][Column][Key][DatabaseGenerated(Identity)][NotMapped][Description][DefaultValue][Required] 等标准特性进行实体映射配置。

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.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
26.5.19.1 92 5/19/2026
26.5.18.1 91 5/18/2026
26.5.15.1 89 5/15/2026
26.5.12.3 88 5/12/2026
26.5.12.2 91 5/12/2026
26.4.27.1-rc1 90 4/26/2026
26.4.25.1-rc1 88 4/25/2026
26.4.22.2-rc7 91 4/22/2026
26.4.22.2-rc6 86 4/22/2026
26.4.22.2-rc4 84 4/22/2026
26.4.22.2-rc3 76 4/22/2026
26.4.19.1-rc1 97 4/19/2026
26.4.12.8-rc1 97 4/12/2026
26.4.12.7-rc1 91 4/12/2026
26.1.30.1-rc1 112 1/30/2026
26.1.29.1 122 1/29/2026
26.1.28.5 113 1/28/2026
26.1.28.4 111 1/28/2026
26.1.28.2 118 1/28/2026
26.1.23.6 112 1/23/2026
Loading failed