public DMSqlProcedure(SqlProcedureAttribute sql) { if (sql.Name != string.Empty) { _name = sql.Name; } }
public InstallerScriptableSqlProcedure(string name, string schemaName, InstallerScriptableSqlAssembly sqlSqlAssembly, MethodInfo method) : base(name, schemaName, sqlSqlAssembly, method.DeclaringType, method) { _exportedProcedureAttribute = method.GetCustomAttribute<SqlInstallerScriptGeneratorExportedProcedure>(); _sqlProcedureAttribute = method.GetCustomAttribute<SqlProcedureAttribute>(); }
public ProcedureWrapper(SqlProcedureAttribute procdef, MethodInfo functionsygnature, string schema) : base(functionsygnature, schema) { _procdef = procdef; }