SqlUserDefinedTypeAttribute(Format) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用者定義型別 (UDT) 上的必要屬性,用於確認指定的型別是 UDT,並指出 UDT 的儲存格式。
public:
SqlUserDefinedTypeAttribute(Microsoft::SqlServer::Server::Format format);
public SqlUserDefinedTypeAttribute (Microsoft.SqlServer.Server.Format format);
new Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute : Microsoft.SqlServer.Server.Format -> Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute
Public Sub New (format As Format)
參數
範例
// using Microsoft.SqlServer.Server;
[SqlUserDefinedType(Format.Native, MaxByteSize = 8000)]
public class SampleType
{
//...
}
備註
下列範例會 Format
指定使用者定義型別的 為 SerializedDataWithMetadata
,且 MaxByteSize
為8000個字節。