mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
17 lines
395 B
C#
17 lines
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SqlSugar;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace Yi.Framework.SqlSugarCore.Abstractions
|
|
{
|
|
public interface ISqlSugarDbContext
|
|
{
|
|
// IAbpLazyServiceProvider LazyServiceProvider { get; set; }
|
|
ISqlSugarClient SqlSugarClient { get; }
|
|
}
|
|
}
|