Add GetProcList(+0)

This commit is contained in:
sunkaixuan 2024-05-08 20:47:55 +08:00
parent 83effcb614
commit 8446f33710
2 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,10 @@ namespace SqlSugar
public abstract partial class DbMaintenanceProvider : IDbMaintenance
{
#region DML
public List<string> GetProcList()
{
return GetProcList(this.Context.Ado.Connection.Database);
}
public virtual List<string> GetProcList(string dbName)
{
return new List<string>();

View File

@ -19,6 +19,7 @@ namespace SqlSugar
List<string> GetIsIdentities(string tableName);
List<string> GetPrimaries(string tableName);
List<string> GetProcList(string dbName);
List<string> GetProcList();
List<string> GetIndexList(string tableName);
List<string> GetFuncList();
List<string> GetTriggerNames(string tableName);