mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Add GetProcList(+0)
This commit is contained in:
parent
83effcb614
commit
8446f33710
@ -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>();
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user