コード例 #1
0
ファイル: deployattr.cs プロジェクト: nberglund/sqlclrproject
 public DMSqlProcedure(SqlProcedureAttribute sql)
 {
     if (sql.Name != string.Empty) {
     _name = sql.Name;
       }
 }
コード例 #2
0
 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>();
 }
コード例 #3
0
		public ProcedureWrapper(SqlProcedureAttribute procdef, MethodInfo functionsygnature, string schema)
			: base(functionsygnature, schema) {
			_procdef = procdef;
		}