你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
IDurableOrchestrationContext.CreateEntityProxy 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
CreateEntityProxy<TEntityInterface>(String) |
创建实体代理。 |
CreateEntityProxy<TEntityInterface>(EntityId) |
创建实体代理。 |
CreateEntityProxy<TEntityInterface>(String)
创建实体代理。
public TEntityInterface CreateEntityProxy<TEntityInterface> (string entityKey);
abstract member CreateEntityProxy : string -> 'EntityInterface
Public Function CreateEntityProxy(Of TEntityInterface) (entityKey As String) As TEntityInterface
类型参数
- TEntityInterface
实体接口。
参数
- entityKey
- String
目标实体键。
返回
TEntityInterface
实体代理。
适用于
CreateEntityProxy<TEntityInterface>(EntityId)
创建实体代理。
public TEntityInterface CreateEntityProxy<TEntityInterface> (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId);
abstract member CreateEntityProxy : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId -> 'EntityInterface
Public Function CreateEntityProxy(Of TEntityInterface) (entityId As EntityId) As TEntityInterface
类型参数
- TEntityInterface
实体接口。
参数
- entityId
- EntityId
目标实体。
返回
TEntityInterface
实体代理。