SqlSugar源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
5.2 KiB

2 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class UOneManyMany
{
2 years ago
public static void init()
2 years ago
{
var db = NewUnitTest.Db;
2 years ago
db.CodeFirst.InitTables<Student_001, School_001, Room_001, Desk_001>();
2 years ago
db.DbMaintenance.TruncateTable<Student_001, School_001, Room_001, Desk_001>();
db.Insertable(new Student_001() { sid = 1, Name = "北大jack", SchoolId = 1 }).ExecuteCommand();
2 years ago
db.Insertable(new Student_001() { sid = 2, Name = "青华jack", SchoolId = 2 }).ExecuteCommand();
2 years ago
2 years ago
db.Insertable(new School_001() { scid = 1, schname = "北大" }).ExecuteCommand();
db.Insertable(new School_001() { scid = 2, schname = "青华" }).ExecuteCommand();
2 years ago
2 years ago
db.Insertable(new Room_001() { roomId = 1, schoolId = 1, roomName = "北大01室" }).ExecuteCommand();
db.Insertable(new Room_001() { roomId = 2, schoolId = 1, roomName = "北大02室" }).ExecuteCommand();
2 years ago
db.Insertable(new Room_001() { roomId = 3, schoolId = 2, roomName = "青华03室" }).ExecuteCommand();
db.Insertable(new Room_001() { roomId = 4, schoolId = 2, roomName = "青华04室" }).ExecuteCommand();
2 years ago
db.Insertable(new Desk_001() { roomId = 1, deskid = 1, deskName = "北大01室_01" }).ExecuteCommand();
db.Insertable(new Desk_001() { roomId = 2, deskid = 2, deskName = "北大02室_01" }).ExecuteCommand();
db.Insertable(new Desk_001() { roomId = 3, deskid = 3, deskName = "青华03室_01" }).ExecuteCommand();
2 years ago
db.Insertable(new Desk_001() { roomId = 4, deskid = 4, deskName = "青华04室_01" }).ExecuteCommand();
2 years ago
var list = db.Queryable<Student_001>()
.Includes(x => x.school_001, x => x.rooms, x => x.desk)
.Where(x => x.school_001.rooms.Any(z => z.desk.Any())).ToList();
2 years ago
2 years ago
if (list.Count() != 2)
2 years ago
{
throw new Exception("unit error");
}
var list2 = db.Queryable<Student_001>()
.Includes(x => x.school_001, x => x.rooms)
.Where(x => x.school_001.rooms.Any(z =>
2 years ago
z.roomName == "北大01室" &&
z.desk.Any())).ToList();
2 years ago
if (list2.Count() != 1)
{
throw new Exception("unit error");
}
var list3 = db.Queryable<Student_001>()
2 years ago
.Includes(x => x.school_001, x => x.rooms)
2 years ago
.Where(x => x.school_001.rooms.Any(z =>
z.roomName == "青华03室" &&
2 years ago
z.desk.Any(c => c.deskName == "青华03室_01"))).ToList();
2 years ago
2 years ago
if (list3.Count != 1)
2 years ago
{
throw new Exception("unit error");
}
var list4 = db.Queryable<Student_001>()
.Where(x => x.school_001.rooms.Any(z =>
z.roomName == "青华03室" &&
2 years ago
z.desk.Any(c => c.deskName == "青华04室_01"))).ToList();
2 years ago
if (list4.Count != 0)
{
throw new Exception("unit error");
}
2 years ago
db.DbMaintenance.TruncateTable<Student_001, School_001, Room_001, Desk_001>();
db.InsertNav(list.First())
2 years ago
.Include(x => x.school_001)
2 years ago
.ThenInclude(x => x.rooms)
.ThenInclude(x => x.desk).ExecuteCommand();
db.InsertNav(list.Last())
2 years ago
.Include(x => x.school_001)
2 years ago
.ThenInclude(x => x.rooms)
.ThenInclude(x => x.desk).ExecuteCommand();
if (db.Queryable<Desk_001>().Count() != 4 || db.Queryable<Room_001>().Count() != 4
|| db.Queryable<School_001>().Count() != 2 || db.Queryable<Student_001>().Count() != 2)
{
throw new Exception("unit error");
}
2 years ago
}
public class Student_001
{
[SqlSugar.SugarColumn(IsPrimaryKey =true)]
public int sid { get; set; }
public string Name { get; set; }
public int SchoolId { get; set; }
[SqlSugar.Navigate(SqlSugar.NavigateType.OneToOne,nameof(SchoolId))]
public School_001 school_001 { get; set; }
}
public class School_001
{
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
public int scid { get; set; }
public string schname { get; set; }
[SqlSugar.Navigate(SqlSugar.NavigateType.OneToMany, nameof(Room_001.schoolId))]
public List<Room_001> rooms { get; set; }
}
public class Room_001
{
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
public int roomId { get; set; }
public int schoolId { get; set; }
public string roomName { get; set; }
[SqlSugar.Navigate(SqlSugar.NavigateType.OneToMany, nameof(Desk_001.roomId))]
2 years ago
public List<Desk_001> desk { get; set; }
2 years ago
}
public class Desk_001
{
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
public int deskid { get; set; }
public string deskName { get; set; }
public int roomId { get; set; }
}
}
}