SqlUserDefinedAggregateAttribute.Format 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
做為 Format 的序列化格式。
public:
property Microsoft::SqlServer::Server::Format Format { Microsoft::SqlServer::Server::Format get(); };
public Microsoft.SqlServer.Server.Format Format { get; }
member this.Format : Microsoft.SqlServer.Server.Format
Public ReadOnly Property Format As Format
屬性值
表示序列化格式的 Format。
範例
// using Microsoft.Data.SqlClient.Server;
[SqlUserDefinedAggregate(Format.Native)]
public class SampleAggregate
{
//...
}