UserDefinedTableTypes 속성
Represents a collection of UserDefinedTableType objects. Each UserDefinedTableType object represents a user-defined table type on the database.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo
구문
‘선언
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, _
GetType(UserDefinedTableType))> _
Public ReadOnly Property UserDefinedTableTypes As UserDefinedTableTypeCollection
Get
‘사용 방법
Dim instance As Database
Dim value As UserDefinedTableTypeCollection
value = instance.UserDefinedTableTypes
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(UserDefinedTableType))]
public UserDefinedTableTypeCollection UserDefinedTableTypes { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny,
typeof(UserDefinedTableType))]
public:
property UserDefinedTableTypeCollection^ UserDefinedTableTypes {
UserDefinedTableTypeCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(UserDefinedTableType))>]
member UserDefinedTableTypes : UserDefinedTableTypeCollection
function get UserDefinedTableTypes () : UserDefinedTableTypeCollection
속성 값
형식: Microsoft.SqlServer.Management.Smo. . :: . .UserDefinedTableTypeCollection
A UserDefinedTableTypeCollection object that represents all the user-defined table types on the database.
주의
Specific user-defined types can be referenced by using this collection by specifying the name of the user-defined table type. To add a new user-defined table type to the collection, call the user-defined table type constructor.
예제
'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 table types in the database.
Dim udtt As UserDefinedTableType
For Each udtt In db.UserDefinedTableTypes
Console.WriteLine(udtt.Name)
Next