SqlFunctionAttribute.Name 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
函式應在 SQL Server 中註冊的名稱。
public:
property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String
屬性值
String 值,表示函式應該要註冊的名稱。
範例
// using Microsoft.Data.SqlClient.Server;
public partial class UserDefinedFunctions
{
[SqlFunction(Name = "sp_scalarFunc")]
public static SqlString SampleScalarFunction(SqlString s)
{
//...
return "";
}
}
備註
此屬性僅供 Microsoft Visual Studio 用來將指定的方法自動註冊為使用者定義函式。 SQL Server 不會使用它。
下列範例會指定使用名稱 sp_scalarFunc
參考使用者定義函數。