SqlSugar/README.md

341 lines
9.5 KiB
Markdown
Raw Normal View History

2017-05-23 07:54:11 +08:00
# SqlSugar 4.X API
2017-09-17 12:04:57 +08:00
In addition to EF, the most powerful ORM
2018-12-20 15:44:00 +08:00
SupportMySql、SqlServer、Sqlite、Oracle、postgresql
2018-02-01 19:20:55 +08:00
2017-05-31 16:03:17 +08:00
## Contactinfomation
Email:610262374@qq.com
2017-05-26 11:59:13 +08:00
QQ Group:225982985
2017-06-26 11:01:55 +08:00
## Nuget
2018-01-30 16:32:02 +08:00
.net Install
2019-01-04 18:36:12 +08:00
```ps1
Install-Package sqlSugar
```
2018-01-30 16:32:02 +08:00
.net core Install
2019-01-04 18:36:12 +08:00
```ps1
Install-Package sqlSugarCore
```
2019-04-29 20:00:23 +08:00
## SqlSugar's 16 Functions
There are 16 methods under SqlSugarClient
2019-04-30 17:07:07 +08:00
![输入图片说明](http://www.codeisbug.com/_theme/ueditor/utf8-net/net/upload/image/20190430/6369224056499802674782957.jpg?id=1 "sqlsugar")
2019-04-30 17:01:11 +08:00
2019-04-29 20:00:23 +08:00
2019-04-29 15:16:45 +08:00
## Create SqlSugarClient
All operations are based on SqlSugarClient
```cs
2019-04-29 20:50:43 +08:00
public List<Student> GetStudentList()
2019-04-29 15:17:36 +08:00
{
var db= GetInstance();
var list= db.Queryable<Student>().ToList();//Search
return list;
}
2019-04-29 15:16:45 +08:00
2019-04-29 15:17:36 +08:00
/// <summary>
/// Create SqlSugarClient
/// </summary>
/// <returns></returns>
private SqlSugarClient GetInstance()
{
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
2019-04-29 15:16:45 +08:00
{
2019-04-29 15:17:36 +08:00
ConnectionString = "Server=.xxxxx",
DbType = DbType.SqlServer,
IsAutoCloseConnection = true,
InitKeyType = InitKeyType.Attribute
});
//Print sql
db.Aop.OnLogExecuting = (sql, pars) =>
{
Console.WriteLine(sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value)));
Console.WriteLine();
};
return db;
}
2019-04-29 15:16:45 +08:00
2019-04-29 15:17:36 +08:00
public class Student
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true]
public int Id { get; set; }
public int? SchoolId { get; set; }
public string Name { get; set; }
}
2019-04-29 15:16:45 +08:00
```
2019-04-29 14:53:41 +08:00
2019-04-29 20:34:20 +08:00
2018-02-02 14:50:34 +08:00
2019-04-29 20:37:06 +08:00
## 1. Queryable
2019-04-29 15:42:10 +08:00
We use it to query
2019-04-29 15:31:06 +08:00
2019-01-04 18:36:12 +08:00
```cs
2019-04-29 20:50:03 +08:00
//easy
2017-05-31 16:03:17 +08:00
var getAll = db.Queryable<Student>().ToList();
var getAllNoLock = db.Queryable<Student>().With(SqlWith.NoLock).ToList();
var getByPrimaryKey = db.Queryable<Student>().InSingle(2);
var sum = db.Queryable<Student>().Sum(it=>it.Id);
var isAny = db.Queryable<Student>().Where(it=>it.Id==-1).Any();
var isAny2 = db.Queryable<Student>().Any(it => it.Id == -1);
var getListByRename = db.Queryable<School>().AS("Student").ToList();
2019-04-29 20:48:18 +08:00
var getByWhere = db.Queryable<Student>().Where(it => it.Id == 1 || it.Name == "a").ToList();
var getByFuns = db.Queryable<Student>().Where(it => SqlFunc.IsNullOrEmpty(it.Name)).ToList();
var group = db.Queryable<Student>().GroupBy(it => it.Id).Select(it =>new { id = SqlFunc.AggregateCount(it.Id) }).ToList();
2017-05-31 16:03:17 +08:00
2019-04-29 15:31:06 +08:00
//Page
2017-05-31 16:03:17 +08:00
var page = db.Queryable<Student>().ToPageList(pageIndex, pageSize, ref totalCount);
2017-05-23 07:43:26 +08:00
2017-05-31 16:03:17 +08:00
//page join
2019-04-29 20:50:03 +08:00
var pageJoin = db.Queryable<Student, School>((st, sc) =>new JoinQueryInfos(JoinType.Left,st.SchoolId==sc.Id))
.ToPageList(pageIndex, pageSize, ref totalCount);
2017-05-23 07:43:26 +08:00
2017-05-31 16:03:17 +08:00
//top 5
var top5 = db.Queryable<Student>().Take(5).ToList();
2017-05-23 07:43:26 +08:00
2017-05-31 16:03:17 +08:00
//join Order By (order by st.id desc,sc.id desc)
2019-04-29 20:48:18 +08:00
var list4 = db.Queryable<Student, School>((st, sc) =>new JoinQueryInfos(JoinType.Left,st.SchoolId==sc.Id))
2017-05-31 16:03:17 +08:00
.OrderBy(st=>st.Id,OrderByType.Desc)
.OrderBy((st,sc)=>sc.Id,OrderByType.Desc)
2019-04-29 19:34:48 +08:00
.Select<ViewModelStudent>().ToList();
2017-05-23 07:46:39 +08:00
2017-09-17 11:12:02 +08:00
```
2019-04-29 20:33:32 +08:00
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/1.Queryable)
2019-04-29 20:26:58 +08:00
2019-04-29 20:24:43 +08:00
2019-04-29 20:34:20 +08:00
2019-04-29 20:37:06 +08:00
## 2. Updateable
2019-04-29 15:42:10 +08:00
We use it to Update
2019-04-29 15:40:22 +08:00
```cs
//update reutrn Update Count
var t1= db.Updateable(updateObj).ExecuteCommand();
//Only update Name
var t3 = db.Updateable(updateObj).UpdateColumns(it => new { it.Name }).ExecuteCommand();
//Ignore Name and TestId
var t4 = db.Updateable(updateObj).IgnoreColumns(it => new { it.Name, it.TestId }).ExecuteCommand();
//update List<T>
var t7 = db.Updateable(updateObjs).ExecuteCommand();
//Where By Expression
var t9 = db.Updateable(updateObj).Where(it => it.Id == 1).ExecuteCommand();
```
2019-04-29 20:38:40 +08:00
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/2.Updateable)
2017-05-26 02:30:54 +08:00
2017-05-31 16:03:17 +08:00
2019-04-29 20:37:06 +08:00
## 3. Insertable
2019-04-29 15:42:10 +08:00
We use it to Insert
2019-01-04 18:36:12 +08:00
```cs
2017-05-31 16:03:17 +08:00
//Insert reutrn Insert Count
var t2 = db.Insertable(insertObj).ExecuteCommand();
2017-05-23 07:54:11 +08:00
2017-05-31 16:03:17 +08:00
//Insert reutrn Identity Value
var t3 = db.Insertable(insertObj).ExecuteReutrnIdentity();
2017-05-23 07:54:11 +08:00
2017-05-31 16:03:17 +08:00
//Only insert Name
var t4 = db.Insertable(insertObj).InsertColumns(it => new { it.Name,it.SchoolId }).ExecuteReutrnIdentity();
2017-05-23 07:54:11 +08:00
2017-05-31 16:03:17 +08:00
//Ignore TestId
var t5 = db.Insertable(insertObj).IgnoreColumns(it => new { it.Name, it.TestId }).ExecuteReutrnIdentity();
//Insert List<T>
2019-04-29 19:36:04 +08:00
var s9 = db.Insertable(insertObjs).InsertColumns(it => new { it.Name }).ExecuteCommand();
2017-05-31 16:03:17 +08:00
```
2019-04-29 20:38:40 +08:00
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/3.Insertable)
2019-04-29 20:44:29 +08:00
2019-04-29 20:37:06 +08:00
## 4. Deleteable
2019-04-29 15:42:10 +08:00
We use it to Delete
2017-05-31 16:03:17 +08:00
2019-01-04 18:36:12 +08:00
```cs
2017-05-31 16:03:17 +08:00
var t1 = db.Deleteable<Student>().Where(new Student() { Id = 1 }).ExecuteCommand();
//use lock
var t2 = db.Deleteable<Student>().With(SqlWith.RowLock).ExecuteCommand();
//by primary key
var t3 = db.Deleteable<Student>().In(1).ExecuteCommand();
//by primary key array
var t4 = db.Deleteable<Student>().In(new int[] { 1, 2 }).ExecuteCommand();
//by expression
var t5 = db.Deleteable<Student>().Where(it => it.Id == 1).ExecuteCommand();
```
2019-04-29 20:37:06 +08:00
## 5. SqlQueryable
2019-04-29 15:46:21 +08:00
```cs
var list = db.SqlQueryable<Student>("select * from student").ToPageList(1, 2);
var list2 = db.SqlQueryable<Student>("select * from student").Where(it=>it.Id==1).ToPageList(1, 2);
var list3= db.SqlQueryable<Student>("select * from student").Where("id=@id",new { id=1}).ToPageList(1, 2);
2019-04-29 15:46:54 +08:00
```
2019-04-29 15:46:21 +08:00
2019-04-29 20:37:06 +08:00
## 6. SaveQueues
2019-04-29 15:50:16 +08:00
Perform multiple operations together with transactions
```cs
var db = GetInstance();
db.Insertable<Student>(new Student() { Name = "a" }).AddQueue();
db.Insertable<Student>(new Student() { Name = "b" }).AddQueue();
db.SaveQueues();
db.Insertable<Student>(new Student() { Name = "a" }).AddQueue();
db.Insertable<Student>(new Student() { Name = "b" }).AddQueue();
db.Insertable<Student>(new Student() { Name = "c" }).AddQueue();
db.Insertable<Student>(new Student() { Name = "d" }).AddQueue();
var ar = db.SaveQueuesAsync();
db.Queryable<Student>().AddQueue();
db.Queryable<School>().AddQueue();
db.AddQueue("select * from student where id=@id", new { id = 1 });
var result2 = db.SaveQueues<Student, School, Student>();
2019-04-29 18:07:46 +08:00
```
2019-04-29 20:37:06 +08:00
## 7.Ado
2019-04-29 18:07:46 +08:00
db.Ado.MethodNameLook at the following example
```cs
var dt=db.Ado.GetDataTable("select * from table where id=@id and name=@name",new List<SugarParameter>(){
new SugarParameter("@id",1),
new SugarParameter("@name",2)
});
var dt=db.Ado.GetDataTable("select * from table where id=@id and name=@name",new{id=1,name=2});
//Use Stored Procedure
var dt2 = db.Ado.UseStoredProcedure().GetDataTable("sp_school",new{name="张三",age=0});// GetInt SqlQuery<T> 等等都可以用
var nameP= new SugarParameter("@name", "张三");
var ageP= new SugarParameter("@age", null, true);//isOutput=true
var dt2 = db.Ado.UseStoredProcedure().GetDataTable("sp_school",nameP,ageP);
2019-04-29 15:50:16 +08:00
```
2019-04-29 15:46:21 +08:00
2019-04-29 20:37:06 +08:00
## 8.Saveable
2019-04-29 18:12:42 +08:00
Insert or Update
```cs
db.Saveable<Student>(entity).ExecuteReturnEntity();
db.Saveable<Student>(new Student() { Name = "" })
.InsertColumns(it=>it.Name)
.UpdateColumns(it=>new { it.Name,it.CreateTime }
.ExecuteReturnEntity();
```
2019-04-29 20:37:06 +08:00
## 9.EntityMain
2019-04-29 19:17:37 +08:00
```cs
var entityInfo=db.EntityMaintenance.GetEntityInfo<Student>();
foreach (var column in entityInfo.Columns)
{
Console.WriteLine(column.ColumnDescription);
}
```
2019-04-29 20:37:06 +08:00
## 10.DbMain
2019-04-29 19:24:29 +08:00
```cs
var tables = db.DbMaintenance.GetTableInfoList();
foreach (var table in tables)
{
Console.WriteLine(table.Description);
}
```
2019-04-29 19:17:37 +08:00
2019-04-29 20:37:06 +08:00
## 11.Aop
2019-01-04 18:36:12 +08:00
```cs
2019-04-29 18:54:57 +08:00
db.Aop.OnLogExecuted = (sql, pars) => //SQL executed event
2017-08-31 19:54:02 +08:00
{
2019-04-29 18:54:57 +08:00
 
};
db.Aop.OnLogExecuting = (sql, pars) => //SQL executing event (pre-execution)
{
 
};
db.Aop.OnError = (exp) =>//SQL execution error event
{
                 
};
db.Aop.OnExecutingChangeSql = (sql, pars) => //SQL executing event (pre-execution,SQL script can be modified)
{
    return new KeyValuePair<string, SugarParameter[]>(sql,pars);
};
2017-05-30 00:13:22 +08:00
2019-04-29 18:54:57 +08:00
```
2019-04-29 19:47:45 +08:00
2019-04-29 20:37:06 +08:00
## 12.QueryFilter
2019-04-29 19:50:40 +08:00
```cs
2019-04-29 19:46:14 +08:00
2019-04-29 19:47:45 +08:00
//gobal filter
var db = GetInstance();
var sql = db.Queryable<Student>().ToSql();
//SELECT [ID],[SchoolId],[Name],[CreateTime] FROM [STudent] WHERE isDelete=0
2019-04-29 19:46:14 +08:00
2019-04-29 19:47:45 +08:00
public static SqlSugarClient GetInstance()
{
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig() {xxx);
2019-04-29 19:46:14 +08:00
db.QueryFilter.Add(new SqlFilterItem()
{
FilterValue = filterDb =>
{
return new SqlFilterResult() { Sql = " isDelete=0" };
}
});
return db;
2019-04-29 19:47:45 +08:00
}
2019-04-29 19:50:40 +08:00
```
2019-04-29 20:37:06 +08:00
## 13.DbFirst
2019-04-29 18:54:57 +08:00
```cs
2017-05-30 00:13:22 +08:00
var db = GetInstance();
2019-01-04 18:36:12 +08:00
//Create all class
db.DbFirst.CreateClassFile("c:\\Demo\\1");
2017-05-30 00:13:22 +08:00
2019-01-04 18:36:12 +08:00
//Create student calsss
db.DbFirst.Where("Student").CreateClassFile("c:\\Demo\\2");
//Where(array)
2017-05-30 00:13:22 +08:00
2019-01-04 18:36:12 +08:00
//Mapping name
db.MappingTables.Add("ClassStudent", "Student");
db.MappingColumns.Add("NewId", "Id", "ClassStudent");
db.DbFirst.Where("Student").CreateClassFile("c:\\Demo\\3");
2017-05-30 00:13:22 +08:00
2019-01-04 18:36:12 +08:00
//Remove mapping
db.MappingTables.Clear();
2017-05-30 00:13:22 +08:00
2019-01-04 18:36:12 +08:00
//Create class with default value
db.DbFirst.IsCreateDefaultValue().CreateClassFile("c:\\Demo\\4", "Demo.Models");
2017-05-30 00:13:22 +08:00
2019-01-04 18:36:12 +08:00
//Mapping and Attribute
db.MappingTables.Add("ClassStudent", "Student");
db.MappingColumns.Add("NewId", "Id", "ClassStudent");
db.DbFirst.IsCreateAttribute().Where("Student").CreateClassFile("c:\\Demo\\5");
2017-05-30 00:13:22 +08:00
2017-05-31 16:03:17 +08:00
```
2019-04-29 20:37:06 +08:00
## 14.CodeFirst
2019-01-04 18:36:12 +08:00
```cs
2019-04-29 18:54:57 +08:00
db.CodeFirst.SetStringDefaultLength(100).BackupTable().InitTables(typeof(CodeTable),typeof(CodeTable2)); //change entity backupTable
db.CodeFirst.SetStringDefaultLength(100).InitTables(typeof(CodeTable), typeof(CodeTable2));
2017-09-19 08:41:16 +08:00
```
2019-04-29 20:37:06 +08:00
## 15.Utilities
2019-04-29 19:27:47 +08:00
```cs
var list = db.Utilities.DataTableToList(datatable);
```
2019-04-29 19:31:56 +08:00
2019-04-29 20:37:06 +08:00
## 16.SimpleClient
2019-04-29 19:57:22 +08:00
```cs
2019-04-29 19:55:20 +08:00
var db = GetInstance();
var sdb = db.GetSimpleClient<Student>();
sdb.GetById(1);
sdb.GetList();
sdb.DeleteById(1);
sdb.Update(obj);
```
2019-04-29 18:54:57 +08:00
2017-09-19 08:41:16 +08:00
2019-04-29 19:27:47 +08:00
# Code generator
2019-01-21 19:34:18 +08:00
https://github.com/sunkaixuan/SoEasyPlatform
2019-04-29 19:27:47 +08:00
# More APi 中文文档:
2017-06-18 19:41:51 +08:00
http://www.codeisbug.com/Doc/8