mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Add unit test
This commit is contained in:
parent
8809dacf6d
commit
9a99a5fc4e
@ -97,6 +97,7 @@
|
|||||||
<Compile Include="Models\OrderItem.cs" />
|
<Compile Include="Models\OrderItem.cs" />
|
||||||
<Compile Include="Demo\Demo0_SqlSugarClient.cs" />
|
<Compile Include="Demo\Demo0_SqlSugarClient.cs" />
|
||||||
<Compile Include="Models\ViewOrder.cs" />
|
<Compile Include="Models\ViewOrder.cs" />
|
||||||
|
<Compile Include="UnitTest\UnitManyToManyUpdate.cs" />
|
||||||
<Compile Include="UnitTest\UnitManyToMay1231.cs" />
|
<Compile Include="UnitTest\UnitManyToMay1231.cs" />
|
||||||
<Compile Include="UnitTest\UnitOneToOneN.cs" />
|
<Compile Include="UnitTest\UnitOneToOneN.cs" />
|
||||||
<Compile Include="UnitTest\UCustom024.cs" />
|
<Compile Include="UnitTest\UCustom024.cs" />
|
||||||
|
@ -31,6 +31,7 @@ namespace OrmTest
|
|||||||
}
|
}
|
||||||
public static void Init()
|
public static void Init()
|
||||||
{
|
{
|
||||||
|
UnitManyToManyUpdate.Init();
|
||||||
UnitManyToMay1231.Init();
|
UnitManyToMay1231.Init();
|
||||||
UnitUpdateNav2.Init();
|
UnitUpdateNav2.Init();
|
||||||
UnitUpdateNav.Init();
|
UnitUpdateNav.Init();
|
||||||
|
79
Src/Asp.Net/SqlServerTest/UnitTest/UnitManyToManyUpdate.cs
Normal file
79
Src/Asp.Net/SqlServerTest/UnitTest/UnitManyToManyUpdate.cs
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
|
using SqlSugar;
|
||||||
|
using static OrmTest.Program;
|
||||||
|
namespace OrmTest
|
||||||
|
{
|
||||||
|
public class UnitManyToManyUpdate
|
||||||
|
{
|
||||||
|
public static void Init()
|
||||||
|
{
|
||||||
|
var db = new SqlSugarScope(new SqlSugar.ConnectionConfig()
|
||||||
|
{
|
||||||
|
ConnectionString = Config.ConnectionString,
|
||||||
|
DbType = DbType.SqlServer,
|
||||||
|
IsAutoCloseConnection = true,
|
||||||
|
});
|
||||||
|
db.Aop.OnLogExecuting = (sql, pars) =>
|
||||||
|
{
|
||||||
|
Console.WriteLine(sql);
|
||||||
|
};
|
||||||
|
//建表
|
||||||
|
db.CodeFirst.InitTables<SchoolA111, SchoolAndRoomA111, RoomA111>();
|
||||||
|
db.DbMaintenance.TruncateTable<SchoolA111, SchoolAndRoomA111, RoomA111>();
|
||||||
|
//插入数据
|
||||||
|
db.Insertable(new SchoolA111 { SchoolId = 1, SchoolName = "清华" }).ExecuteCommand();
|
||||||
|
db.Insertable(new SchoolAndRoomA111 { SchoolId = 1, RoomId = 1, Weight = 1 }).ExecuteCommand();
|
||||||
|
db.Insertable(new SchoolAndRoomA111 { SchoolId = 1, RoomId = 2, Weight = 1 }).ExecuteCommand();
|
||||||
|
db.Insertable(new RoomA111 { RoomId = 1, RoomName = "甲号房" }).ExecuteCommand();
|
||||||
|
db.Insertable(new RoomA111 { RoomId = 2, RoomName = "乙号房" }).ExecuteCommand();
|
||||||
|
//用例代码
|
||||||
|
//查关系表数据
|
||||||
|
var data = db.Queryable<SchoolAndRoomA111>()
|
||||||
|
.Includes(it => it.School)
|
||||||
|
.Includes(it => it.Room)
|
||||||
|
.First();
|
||||||
|
//修改A表或B表数据
|
||||||
|
data.Room.RoomName = "丙号房";
|
||||||
|
//执行导航更新
|
||||||
|
//报错Sql (Update关系表中的AB表主键):
|
||||||
|
// UPDATE [SchoolAndRoomA] SET [RoomId]=1 WHERE SchoolId = 1
|
||||||
|
var result = db.UpdateNav(data)
|
||||||
|
.Include(it => it.School)
|
||||||
|
.Include(it => it.Room)
|
||||||
|
.ExecuteCommand();
|
||||||
|
Console.WriteLine(result);
|
||||||
|
Console.WriteLine("用例跑完");
|
||||||
|
Console.ReadKey();
|
||||||
|
}
|
||||||
|
//建类
|
||||||
|
public class SchoolA111
|
||||||
|
{
|
||||||
|
[SugarColumn(IsPrimaryKey = true)]
|
||||||
|
public int SchoolId { get; set; }
|
||||||
|
public string SchoolName { get; set; }
|
||||||
|
}
|
||||||
|
public class SchoolAndRoomA111
|
||||||
|
{
|
||||||
|
[SugarColumn(IsPrimaryKey = true)]
|
||||||
|
public int SchoolId { get; set; }
|
||||||
|
[SugarColumn(IsPrimaryKey = true)]
|
||||||
|
public int RoomId { get; set; }
|
||||||
|
public int? Weight { get; set; }
|
||||||
|
[SugarColumn(IsNullable = true)]
|
||||||
|
[Navigate(NavigateType.OneToOne, nameof(SchoolId))]
|
||||||
|
public SchoolA111 School { get; set; }
|
||||||
|
[SugarColumn(IsNullable = true)]
|
||||||
|
[Navigate(NavigateType.OneToOne, nameof(RoomId))]
|
||||||
|
public RoomA111 Room { get; set; }
|
||||||
|
}
|
||||||
|
public class RoomA111
|
||||||
|
{
|
||||||
|
[SugarColumn(IsPrimaryKey = true)]
|
||||||
|
public int RoomId { get; set; }
|
||||||
|
public string RoomName { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user