System.Data
2.0.0.0
System.Attribute
System.AttributeUsage(System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)
is used only by Microsoft Visual Studio to automatically register the specified method as a stored procedure. It is not used by SQL Server.
See "CLR Stored Procedures" in SQL Server 2005 Books Online for more information on CLR stored procedures and examples.
Used to mark a method definition in an assembly as a stored procedure. The properties on the attribute reflect the physical characteristics used when the type is registered with SQL Server. This class cannot be inherited.
Constructor
To be added.
An attribute on a method definition in an assembly, used to indicate that the given method should be registered as a stored procedure in SQL Server.
2.0.0.0
Property
System.String
To be added.
The property is optional.
The following example specifies that the stored procedure is referenced using the name sp_sqlName.
The name of the stored procedure.
2.0.0.0