Update README.md

This commit is contained in:
sunkaixuan 2019-05-03 20:49:13 +08:00 committed by GitHub
parent 56f87c56ff
commit c87ab45d3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -198,6 +198,8 @@ db.Queryable<School>().AddQueue();
db.AddQueue("select * from student where id=@id", new { id = 1 });
var result2 = db.SaveQueues<Student, School, Student>();
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/6.queue )
## 7.Ado
db.Ado.MethodNameLook at the following example
@ -214,6 +216,7 @@ var nameP= new SugarParameter("@name", "张三");
var ageP= new SugarParameter("@age", null, true);//isOutput=true
var dt2 = db.Ado.UseStoredProcedure().GetDataTable("sp_school",nameP,ageP);
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/7.ado )
## 8.Saveable
Insert or Update
@ -225,6 +228,7 @@ db.Saveable<Student>(new Student() { Name = "" })
.ExecuteReturnEntity();
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/8.saveable )
## 9.EntityMain
```cs
@ -234,6 +238,8 @@ foreach (var column in entityInfo.Columns)
Console.WriteLine(column.ColumnDescription);
}
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/9.entityMain )
## 10.DbMain
```cs
var tables = db.DbMaintenance.GetTableInfoList();
@ -242,6 +248,7 @@ foreach (var column in entityInfo.Columns)
Console.WriteLine(table.Description);
}
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/a.DbMain )
## 11.Aop
@ -264,6 +271,7 @@ db.Aop.OnExecutingChangeSql = (sql, pars) => //SQL executing event (pre-exe
};
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/b.aop )
## 12.QueryFilter
```cs
@ -287,6 +295,8 @@ public static SqlSugarClient GetInstance()
return db;
}
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/c.GobalFilter )
## 13.DbFirst
```cs
var db = GetInstance();
@ -316,15 +326,21 @@ db.DbFirst.IsCreateAttribute().Where("Student").CreateClassFile("c:\\Demo\\5");
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/d.DbFirst )
## 14.CodeFirst
```cs
db.CodeFirst.SetStringDefaultLength(100).BackupTable().InitTables(typeof(CodeTable),typeof(CodeTable2)); //change entity backupTable
db.CodeFirst.SetStringDefaultLength(100).InitTables(typeof(CodeTable), typeof(CodeTable2));
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/e.CodeFirst )
## 15.Utilities
```cs
var list = db.Utilities.DataTableToList(datatable);
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/f.Utilities )
## 16.SimpleClient
```cs
@ -335,6 +351,7 @@ sdb.GetList();
sdb.DeleteById(1);
sdb.Update(obj);
```
[<font color=red>View more >> </font>](https://github.com/sunkaixuan/SqlSugar/wiki/g.Utilities )
# Code generator