你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
EntityResolver<T> 委托
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个委托用于解析实体。
public delegate T EntityResolver<T>(string partitionKey, string rowKey, DateTimeOffset timestamp, IDictionary<string,EntityProperty> properties, string etag);
type EntityResolver<'T> = delegate of string * string * DateTimeOffset * IDictionary<string, EntityProperty> * string -> 'T
Public Delegate Function EntityResolver(Of T)(partitionKey As String, rowKey As String, timestamp As DateTimeOffset, properties As IDictionary(Of String, EntityProperty), etag As String) As T
类型参数
- T
查询结果要映射到的类型。
参数
- partitionKey
- String
包含实体分区键的字符串。
- rowKey
- String
包含实体行键的字符串。
- timestamp
- DateTimeOffset
包含实体时间戳的 DateTimeOffset。
- properties
- IDictionary<String,EntityProperty>
一个 IDictionary<TKey,TValue> 包含实体属性的 对象。
- etag
- String
ETag。
返回值
T