次の方法で共有


UserDefinedFunctions プロパティ

UserDefinedFunction オブジェクトのコレクションを表します。各 UserDefinedFunction オブジェクトは、データベース上のユーザー定義関数を表します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(UserDefinedFunction), SfcObjectFlags.Design)> _
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), SfcObjectFlags.Design)]
public UserDefinedFunctionCollection UserDefinedFunctions { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(UserDefinedFunction), SfcObjectFlags::Design)]
public:
property UserDefinedFunctionCollection^ UserDefinedFunctions {
    UserDefinedFunctionCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(UserDefinedFunction), SfcObjectFlags.Design)>]
member UserDefinedFunctions : UserDefinedFunctionCollection
function get UserDefinedFunctions () : UserDefinedFunctionCollection

プロパティ値

型: Microsoft.SqlServer.Management.Smo. . :: . .UserDefinedFunctionCollection
データベース上のすべてのユーザー定義関数を表す UserDefinedFunctionCollection オブジェクト。

説明

このコレクションを使用し、ユーザー定義関数の名前を指定することによって、特定のユーザー定義関数を参照できます。新しいユーザー定義関数をコレクションに追加するには、ユーザー定義関数コンストラクター UserDefinedFunction を呼び出します。

使用例

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks2008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2")

'Display all the user defined functions in the database.
Dim udf As UserDefinedFunction
For Each udf In db.UserDefinedFunctions
   Console.WriteLine(udf.Name)
Next

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")

Foreach ($udf in $db.UserDefinedFunctions)
{
   Write-Host $udf.Name
}