Update demo

This commit is contained in:
sunkaixuan
2025-08-23 13:02:14 +08:00
parent 7322ef8cb5
commit 01447b82f1

View File

@@ -29,7 +29,7 @@ namespace OrmTest
var list = db.Queryable<CodeFirstTable1>().ToList();
db.CodeFirst.InitTables<IndexClass>();
db.CodeFirst.InitTables<SplitTableEntity>();
TestBool(db);
//TestBool(db); Questdb bool bug https://github.com/questdb/questdb/issues/6075
TestGuid(db);
var list2=db.Queryable<SplitTableEntity>()
.PartitionBy(it => new { it.Ts, it.Id }).ToList();