SqlUserDefinedAggregateAttribute.Format 屬性

定義

做為 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
{
    //...
}

適用於