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

适用于