SqlSugar/Src/Asp.Net/SqlServerTest/UserTestCases/Cases/UnitAny.cs

46 lines
1.5 KiB
C#
Raw Normal View History

2024-02-24 17:17:27 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
internal class UnitAny
{
public static void Init()
{
var db = NewUnitTest.Db;
db.CodeFirst.InitTables<UintAnyModel>();
var id=db.Insertable(new UintAnyModel() {
Name="a"
}).ExecuteReturnIdentity();
if (db.Queryable<UintAnyModel>().Any(it => it.Id == id) == false)
{
throw new Exception("unit error");
}
if (db.Queryable<UintAnyModel>().Any(it => it.Id == 971151111) == true)
{
throw new Exception("unit error");
}
if (db.Queryable<UintAnyModel>().AnyAsync(it => it.Id == id).GetAwaiter().GetResult() == false)
{
throw new Exception("unit error");
}
if (db.Queryable<UintAnyModel>().AnyAsync(it => it.Id == 971151111).GetAwaiter().GetResult() == true)
{
throw new Exception("unit error");
}
2024-03-18 00:11:27 +08:00
var q=db.Queryable<Order>().Select(it => new { id = it.Id });
var q2 = db.Queryable<Order>().Select(it => new { id = 1 });
var list=db.UnionAll(q, q2).ToList();
2024-02-24 17:17:27 +08:00
}
public class UintAnyModel
{
[SqlSugar.SugarColumn(IsPrimaryKey =true,IsIdentity =true)]
public int Id { get; set; }
public string Name { get; set; }
}
}
}