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.
42 lines
1.0 KiB
42 lines
1.0 KiB
using OrmTest.UnitTest.Models;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrmTest
|
|
{
|
|
public class UCustom07
|
|
{
|
|
public static void Init()
|
|
{
|
|
var db = NewUnitTest.Db;
|
|
db.CurrentConnectionConfig.MoreSettings = new ConnMoreSettings() {
|
|
IsWithNoLockQuery = true
|
|
};
|
|
var query6 = db.Queryable<Order>().LeftJoin(db.Queryable<OrderItem>(),(m, i) => m.Id == i.OrderId)
|
|
.ToList();
|
|
|
|
|
|
}
|
|
public class Unit06
|
|
{
|
|
public string Name { get; set; }
|
|
public string Company { get; set; }
|
|
public string Work { get; set; }
|
|
}
|
|
public class UnitPeople
|
|
{
|
|
public string Name { get; set; }
|
|
public UnitJobClass Job { get; set; }
|
|
}
|
|
|
|
public class UnitJobClass
|
|
{
|
|
public string Company { get; set; }
|
|
public string Work { get; set; }
|
|
}
|
|
}
|
|
}
|
|
|