SqlSugar/README.md

251 lines
9.2 KiB
Markdown
Raw Normal View History

2021-10-10 22:00:50 +08:00
<p align="center">
<span>English</span> |
2021-10-11 19:08:28 +08:00
<a href="https://www.donet5.com/Home/Doc"><font color="red">中文</font></a>
2021-10-10 22:00:50 +08:00
</p>
2021-10-10 22:06:05 +08:00
2021-10-10 23:21:09 +08:00
## SqlSugar ORM
2021-10-10 23:20:24 +08:00
2021-10-10 23:17:31 +08:00
SqlSugar ORM is a library providing Object/Relational Mapping (ORM)
An ORM framework from the future
2021-10-10 22:06:05 +08:00
Using SqlSugar is very simple , And it's powerful.
2021-10-10 23:20:24 +08:00
## Description
2022-10-25 13:04:02 +08:00
- Support Cross database query
2021-11-29 08:31:55 +08:00
- Support SqlServer、MySql、PgSql and Oracle insert blukcopy
2021-11-09 02:47:57 +08:00
- Split table big data self-processing
2021-10-10 22:25:22 +08:00
- Support Multi-tenant, multi-library transactions
2021-10-10 22:00:50 +08:00
- Support Support CodeFirst data migration.
- Support Join query 、 Union all 、 Subquery
- Support Configure the query
- Support DbFirst import entity class from database, or use Generation Tool.
- Support one-to-many and many-to-many navigation properties
2022-08-28 20:48:44 +08:00
- Support MySql、SqlServer、Sqlite、Oracle 、 postgresql 、QuestDb、ClickHouse、达梦、人大金仓 、神通数据库、瀚高、MsAccess、华为GaussDB、GBase 8s、Odbc、Custom
2022-03-01 10:45:37 +08:00
- Support AOP 、 Diff Log 、 Query Filter
2021-10-10 22:00:50 +08:00
2021-10-10 22:32:28 +08:00
## Documentation
2021-10-11 08:53:42 +08:00
|Other |Select | Insert | Update | Delete|
2021-10-10 22:55:50 +08:00
| ----- | --------- | ----------- | ------- |------- |
2022-07-29 09:08:18 +08:00
<a target="_blank" href="https://github.com/donet5/SqlSugar/wiki/NUGET">Nuget</a>| <a href="https://www.donet5.com/Home/Doc?typeId=1187">Query</a> | <a target="_blank" href="https://www.donet5.com/Home/Doc?typeId=1193"> Insert </a> |<a target="_blank" href="https://www.donet5.com/Home/Doc?typeId=1191">Update</a>| <a target="_blank" href="https://www.donet5.com/Home/Doc?typeId=1195">Delete</a> |
2022-07-29 08:45:44 +08:00
<a target="_blank" href="https://github.com/donet5/SqlSugar/wiki/Create--database-operation-object"> Start guide</a> | <a target="_bank" href="https://www.donet5.com/Home/Doc?typeId=1185">Join query </a> |<a href="https://www.donet5.com/Home/Doc?typeId=2422">Insert without entity </a> | <a href="https://www.donet5.com/Home/Doc?typeId=2423">Update without entity</a> | <a href="https://www.donet5.com/Home/Doc?typeId=2424"> Delete without entity </a> | |
2022-07-29 08:51:12 +08:00
|<a href="https://www.donet5.com/Home/Doc?typeId=2246">Multiple databases</a> | <a target="_bank" href="https://www.donet5.com/Home/Doc?typeId=1188">Include query</a>|<a target="_bank" href="https://www.donet5.com/Home/Doc?typeId=2430">Include Insert</a>| <a target="_bank" href="https://www.donet5.com/Home/Doc?typeId=2432">Include Update</a>| <a target="_bank" href="https://www.donet5.com/Home/Doc?typeId=2431">Include Delete</a>
2022-10-25 16:21:44 +08:00
|<a href="https://www.donet5.com/Home/Doc"><font color="red">中文文档</font></a>|<a href="https://www.donet5.com/Home/Doc?typeId=2244">Cross database query</a>|<a href="https://www.donet5.com/Home/Doc?typeId=2244">Insert by json</a>|<a href="https://www.donet5.com/Home/Doc?typeId=2244">Update by json</a>|<a href="https://www.donet5.com/Home/Doc?typeId=2244">Delete by json</a>|
2022-07-29 09:09:58 +08:00
2021-10-10 22:32:28 +08:00
## Feature characteristic
2021-10-10 22:40:00 +08:00
### Feature1 : Join query
2021-10-10 22:00:50 +08:00
Super simple query syntax
```cs
2022-04-15 15:03:21 +08:00
var query = db.Queryable<Order>()
2021-10-10 22:00:50 +08:00
.LeftJoin<Custom> ((o, cus) => o.CustomId == cus.Id)
.LeftJoin<OrderItem> ((o, cus, oritem ) => o.Id == oritem.OrderId)
.LeftJoin<OrderItem> ((o, cus, oritem , oritem2) => o.Id == oritem2.OrderId)
.Where(o => o.Id == 1)
.Select((o, cus) => new ViewOrder { Id = o.Id, CustomName = cus.Name })
.ToList();
```
```sql
SELECT
[o].[Id] AS [Id],
[cus].[Name] AS [CustomName]
FROM
[Order] o
Left JOIN [Custom] cus ON ([o].[CustomId] = [cus].[Id])
Left JOIN [OrderDetail] oritem ON ([o].[Id] = [oritem].[OrderId])
Left JOIN [OrderDetail] oritem2 ON ([o].[Id] = [oritem2].[OrderId])
WHERE
([o].[Id] = @Id0)
2019-04-29 15:46:54 +08:00
```
2022-07-17 14:19:19 +08:00
### Feature2 :Include Query、Insert、Delete and Update
```cs
2022-07-17 14:20:27 +08:00
//query by nav
2022-04-15 15:06:16 +08:00
var list=db.Queryable<Test>()
2022-07-17 14:19:19 +08:00
.Includes(x => x.Provinces,x=>x.Citys ,x=>x.Street) //multi-level
2022-04-15 15:06:16 +08:00
.Includes(x => x.ClassInfo)
.ToList();
2022-07-17 14:20:52 +08:00
2022-07-17 14:20:27 +08:00
//insert by nav
2022-07-17 14:19:19 +08:00
db.InsertNav(list) //Finer operation than EFCore's SaveChange
2022-07-17 14:17:20 +08:00
.Include(z1 => z1.SchoolA)
.ThenInclude(z1 => z1.RoomList)
.Include(z1 => z1.Books)
.ExecuteCommand();
2022-07-17 14:21:09 +08:00
2022-07-17 14:20:27 +08:00
//delete by nav
2022-07-17 14:17:20 +08:00
db.DeleteNav<Student>(it=>it.Id==1)
.Include(z1 => z1.SchoolA)
.ThenInclude(z1 => z1.RoomList) st
.Include(z1 => z1.Books)
.ExecuteCommand();
2022-07-17 14:20:52 +08:00
2022-07-17 14:20:27 +08:00
//update by nav
2022-07-17 14:17:20 +08:00
db.UpdateNav(list)
.Include(z1 => z1.SchoolA)
.ThenInclude(z1 => z1.RoomList)
.Include(z1 => z1.Books)
.ExecuteCommand();
2022-04-15 15:06:16 +08:00
```
### Feature3 : Page query
2021-10-10 22:11:27 +08:00
```cs
int pageIndex = 1;
int pageSize = 20;
int totalCount=0;
var page = db.Queryable<Student>().ToPageList(pageIndex, pageSize, ref totalCount);
```
2019-05-03 20:54:32 +08:00
2022-04-15 15:06:16 +08:00
### Feature4 : Dynamic expression
2021-10-10 22:16:20 +08:00
```cs
var names= new string [] { "a","b"};
Expressionable<Order> exp = new Expressionable<Order>();
foreach (var item in names)
{
exp.Or(it => it.Name.Contains(item.ToString()));
}
var list= db.Queryable<Order>().Where(exp.ToExpression()).ToList();
```
```sql
SELECT [Id],[Name],[Price],[CreateTime],[CustomId]
FROM [Order] WHERE (
([Name] like '%'+ CAST(@MethodConst0 AS NVARCHAR(MAX))+'%') OR
([Name] like '%'+ CAST(@MethodConst1 AS NVARCHAR(MAX))+'%')
)
```
2022-04-15 15:06:16 +08:00
### Feature5 : Multi-tenant transaction
2021-10-10 22:23:22 +08:00
```cs
//Creaate database object
SqlSugarClient db = new SqlSugarClient(new List<ConnectionConfig>()
{
new ConnectionConfig(){ ConfigId="0", DbType=DbType.SqlServer, ConnectionString=Config.ConnectionString, IsAutoCloseConnection=true },
new ConnectionConfig(){ ConfigId="1", DbType=DbType.MySql, ConnectionString=Config.ConnectionString4 ,IsAutoCloseConnection=true}
});
var mysqldb = db.GetConnection("1");//mysql db
var sqlServerdb = db.GetConnection("0");// sqlserver db
db.BeginTran();
mysqldb.Insertable(new Order()
{
CreateTime = DateTime.Now,
CustomId = 1,
Name = "a",
Price = 1
}).ExecuteCommand();
mysqldb.Queryable<Order>().ToList();
sqlServerdb.Queryable<Order>().ToList();
db.CommitTran();
```
2022-04-15 15:06:16 +08:00
### Feature6 : Singleton Pattern
2021-10-10 22:37:27 +08:00
Implement transactions across methods
```CS
public static SqlSugarScope Db = new SqlSugarScope(new ConnectionConfig()
{
DbType = SqlSugar.DbType.SqlServer,
ConnectionString = Config.ConnectionString,
IsAutoCloseConnection = true
},
db=> {
db.Aop.OnLogExecuting = (s, p) =>
{
Console.WriteLine(s);
};
});
using (var tran = Db.UseTran())
{
2021-10-11 08:43:12 +08:00
2021-10-10 22:37:27 +08:00
new Test2().Insert(XX);
new Test1().Insert(XX);
2021-10-11 08:43:12 +08:00
.....
2021-10-10 22:37:27 +08:00
....
2021-10-11 08:43:12 +08:00
tran.CommitTran();
2021-10-10 22:37:27 +08:00
}
```
2022-04-15 15:06:16 +08:00
### Feature7 : Query filter
2021-10-10 23:24:14 +08:00
```cs
2021-10-11 08:43:12 +08:00
//set filter
2021-10-10 23:25:48 +08:00
db.QueryFilter.Add(new TableFilterItem<Order>(it => it.Name.Contains("a")));
2021-10-10 23:24:14 +08:00
db.Queryable<Order>().ToList();
2021-10-10 23:25:48 +08:00
//SELECT [Id],[Name],[Price],[CreateTime],[CustomId] FROM [Order] WHERE ([Name] like '%'+@MethodConst0+'%')
2021-10-10 23:24:14 +08:00
db.Queryable<OrderItem, Order>((i, o) => i.OrderId == o.Id)
.Where(i => i.OrderId != 0)
.Select("i.*").ToList();
//SELECT i.* FROM [OrderDetail] i ,[Order] o WHERE ( [i].[OrderId] = [o].[Id] ) AND
//( [i].[OrderId] <> @OrderId0 ) AND ([o].[Name] like '%'+@MethodConst1+'%')
```
2021-10-10 23:28:04 +08:00
2022-04-15 15:06:16 +08:00
### Feature8 : Insert or update
2021-10-10 23:29:57 +08:00
insert or update
2021-10-10 23:28:04 +08:00
```cs
var x = Db.Storageable(list2).ToStorage();
x.AsInsertable.ExecuteCommand();
x.AsUpdateable.ExecuteCommand();
```
2021-10-10 23:29:57 +08:00
insert into not exists
```cs
var x = Db.Storageable(list).SplitInsert(it => !it.Any()).ToStorage()
x.AsInsertable.ExecuteCommand();
```
2021-10-10 23:28:04 +08:00
2022-04-15 15:06:16 +08:00
### Feature9 Auto split table
2021-11-09 02:54:19 +08:00
Split entity
2021-11-09 02:50:47 +08:00
```cs
2021-11-09 02:52:20 +08:00
[SplitTable(SplitType.Year)]//Table by year (the table supports year, quarter, month, week and day)
[SugarTable("SplitTestTable_{year}{month}{day}")]
2021-11-09 02:50:47 +08:00
public class SplitTestTable
{
[SugarColumn(IsPrimaryKey =true)]
public long Id { get; set; }
public string Name { get; set; }
2021-11-09 02:54:19 +08:00
2021-11-09 02:52:20 +08:00
//When the sub-table field is inserted, which table will be inserted according to this field.
//When it is updated and deleted, it can also be convenient to use this field to
//find out the related table
2021-11-09 02:54:19 +08:00
[SplitField]
2021-11-09 02:50:47 +08:00
public DateTime CreateTime { get; set; }
}
2021-11-09 02:54:19 +08:00
```
Split query
```cs
2021-11-09 02:50:47 +08:00
var lis2t = db.Queryable<OrderSpliteTest>()
.SplitTable(DateTime.Now.Date.AddYears(-1), DateTime.Now)
.ToPageList(1,2); 
2021-11-09 02:54:19 +08:00
```
2021-11-24 09:45:56 +08:00
2022-04-15 15:06:16 +08:00
### Feature10 Big data insert or update
2021-11-24 09:45:56 +08:00
```cs
//Insert A million only takes a few seconds
2021-11-24 09:46:39 +08:00
db.Fastest<RealmAuctionDatum>().BulkCopy(GetList());
2021-11-24 09:45:56 +08:00
2021-11-24 09:56:03 +08:00
//update A million only takes a few seconds
2021-11-24 09:45:56 +08:00
db.Fastest<RealmAuctionDatum>().BulkUpdate(GetList());//A million only takes a few seconds完
2021-11-24 09:46:39 +08:00
db.Fastest<RealmAuctionDatum>().BulkUpdate(GetList(),new string[]{"id"},new string[]{"name","time"})//no primary key
2021-11-24 09:45:56 +08:00
//if exists update, else insert
var x= db.Storageable<Order>(data).ToStorage();
x.BulkCopy();
x.BulkUpdate();
//set table name
db.Fastest<RealmAuctionDatum>().AS("tableName").BulkCopy(GetList())
//set page
db.Fastest<Order>().PageSize(300000).BulkCopy(insertObjs);
```