UserDefinedFunctions プロパティ
UserDefinedFunction オブジェクトのコレクションを表します。各 UserDefinedFunction オブジェクトは、データベース上のユーザー定義関数を表します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, _
GetType(UserDefinedFunction))> _
Public ReadOnly Property UserDefinedFunctions As UserDefinedFunctionCollection
Get
'使用
Dim instance As Database
Dim value As UserDefinedFunctionCollection
value = instance.UserDefinedFunctions
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(UserDefinedFunction))]
public UserDefinedFunctionCollection UserDefinedFunctions { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny,
typeof(UserDefinedFunction))]
public:
property UserDefinedFunctionCollection^ UserDefinedFunctions {
UserDefinedFunctionCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(UserDefinedFunction))>]
member UserDefinedFunctions : UserDefinedFunctionCollection
function get UserDefinedFunctions () : UserDefinedFunctionCollection
プロパティ値
型: Microsoft.SqlServer.Management.Smo. . :: . .UserDefinedFunctionCollection
データベース上のすべてのユーザー定義関数を表す UserDefinedFunctionCollection オブジェクト。
説明
このコレクションを使用し、ユーザー定義関数の名前を指定することによって、特定のユーザー定義関数を参照できます。新しいユーザー定義関数をコレクションに追加するには、ユーザー定義関数コンストラクター UserDefinedFunction を呼び出します。
使用例
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")
'Display all the user defined functions in the database.
Dim udf As UserDefinedFunction
For Each udf In db.UserDefinedFunctions
Console.WriteLine(udf.Name)
Next