GetTables埋点记录表的个数

This commit is contained in:
智能大石头 2025-03-04 13:42:17 +08:00
parent 6bff973eb0
commit e133043045
1 changed files with 1 additions and 1 deletions

View File

@ -620,7 +620,7 @@ public partial class DAL
//CheckDatabase();
var tables = Db.CreateMetaData().GetTables();
if (span != null) span.Tag += ": " + tables.Join(",");
span?.AppendTag(tables.Join(","), tables.Count);
return tables;
}