Ejemplo n.º 1
0
 public abstract string ObjectName(Table table, TableKey fk = null);
Ejemplo n.º 2
0
 public override string ObjectName(Table table, TableKey key = null) => $"[{table.Schema}].[{table.TableName}_AUDIT]";
Ejemplo n.º 3
0
 public virtual string Grant(Table table, TableKey key = null)
 {
     return($@"GRANT EXECUTE ON {GrantType()}::{ObjectName(table, key)} TO [db_execproc] AS [dbo];");
 }
Ejemplo n.º 4
0
 public override string Grant(Table table, TableKey fk = null) => "";