仓储说明
SqlSugar5.0仓储模式可以让你的方法更加的规范,需要什么方法都封装到仓储中,下次就能重复使用,并且能很好的和你业务拆分开, 这种设计模式简单粗暴用起来也方便
官方文档:仓储定义 - SqlSugar 5x - .NET果糖网 (donet5.com)
仓储方法
仓储有一套自带的数据库操作方法,比起 db.xx.xxx来说可能更简便些满足一些常用需求, 复杂的功能还是用 db.xxx.xxx
//查询
var data1 = base.GetById(1); //根据id查询
var data2 = base.GetList(); //查询所有
var data3 = base.GetList(it => it.Id == 1); //TOP1条件
var data4 = base.GetSingle(it => it.Id == 1); //查询单条记录,结果集不能超过1,不然会提示错误
var data = base.GetFirst(it => it.Id == 1); //查询第一条记录
var p = new PageModel()
{
PageIndex = 1, PageSize = 2
};
var data5 = base.GetPageList(it => it.Name == "xx", p);
Console.Write(p.PageCount);
var data6 = base.GetPageList(it => it.Name == "xx", p, it => it.Name, OrderByType.Asc);
Console.Write(p.PageCount);
List < IConditionalModel > conModels = new List < IConditionalModel > ();
conModels.Add(new ConditionalModel()
{
FieldName = "id", ConditionalType = ConditionalType.Equal, FieldValue = "1"
}); //id=1
var data7 = base.GetPageList(conModels, p, it => it.Name, OrderByType.Asc);
var data8 = base.AsQueryable()
.Where(x => x.Id == 1)
.ToList(); //使用Queryable
//插入
base.Insert(insertObj);
base.InsertRange(InsertObjs);
var id = base.InsertReturnIdentity(insertObj); //插入返回自增
var SnowflakeId = InsertReturnSnowflakeId(insertObj); //插入返回雪花ID
base.AsInsertable(insertObj)
.ExecuteCommand(); //复杂功能使用Insertable
//删除
base.Delete(T); //实体删除 需要有主键
base.Delete(List < T > ); //集合删除 需要有主键
base.DeleteById(1);
base.DeleteByIds(new object[]
{
1
, 2
}); //数组带是 ids方法 ,封装传 object [] 类型
//技巧 int [] 转换成 object[] 写法:ids.Cast<object>().ToArray()
base.Delete(it => it.Id == 1);
base.AsDeleteable()
.Where(it => it.Id == 1)
.ExecuteCommand(); //复杂功能用 Deleteable
//更新
base.Update(insertObj);
base.UpdateRange(InsertObjs);
base.Update(it => new Order()
{
Name = "a" /*可以多列*/
}, it => it.Id == 1); //只更新name 并且id=1
base.AsUpdateable(insertObj)
.UpdateColumns(it => new
{
it.Name
})
.ExecuteCommand(); //复杂功能用 Updateable
//高级操作
base.AsSugarClient // 获取完整的db对象
base.AsTenant // 获取多库相关操作
//切换仓储
base.ChangeRepository < Repository < OrderItem >> () //支持多租户和扩展方法,使用SqlSugarScope单例(或者SqlSugarClient Scope注入)
base.Change < OrderItem > () //只支持自带方法和单库
仓储定义
定义 After.Repository 类库
定义的Repository是公用类
using After.Generic;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace After.Repository.Repository
{
public class Repository < T >: SimpleClient < T > where T: class, new()
{
public Repository(ISqlSugarClient context = null): base(context) //注意这里要有默认值等于null
{
if (context == null)
{
string[] sqlText = Type2.SqlText();
base.Context = new SqlSugarClient(new ConnectionConfig()
{
//DbType = SqlSugar.DbType.SqlServer,
DbType = (DbType) Convert.ToSByte(sqlText[1])
, InitKeyType = InitKeyType.Attribute
, IsAutoCloseConnection = true
, ConnectionString = sqlText[0]
});
}
}
/// <summary>
/// 扩展方法,自带方法不能满足的时候可以添加新方法
/// </summary>
/// <returns></returns>
public List < T > CommQuery(string json)
{
//base.Context.Queryable<T>().ToList();可以拿到SqlSugarClient 做复杂操作
return null;
}
}
}
定义IService Service类
IConfigService.cs
using After.Model;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace After.IService.IService
{
public interface IConfigService
{
Task < List < config >> GetAllAsync();
}
}
ConfigService.cs
using After.IService.IService;
using After.Model;
using After.Repository.Repository;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace After.Service
{
public class ConfigService: Repository < config > , IConfigService
{
public ConfigService()
{}
/// <summary>
/// 查询全部
/// </summary>
/// <returns></returns>
public async Task < List < config >> GetAllAsync()
{
return await base.GetListAsync();
}
}
}
使用
//创建实例
ConfigService configService = new ConfigService();
var date = configService.GetAllAsync();
foreach(var item in date.Result)
{
MessageBox.Show(item.ConfigText);
}
标签:Repository,System,仓储,base,new,var,using,SqlSugar
From: https://blog.51cto.com/u_12828212/6774191