你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

EntityLinkingSkill 构造函数

定义

初始化 EntityLinkingSkill 的新实例。

public EntityLinkingSkill (System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> outputs);
new Azure.Search.Documents.Indexes.Models.EntityLinkingSkill : seq<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> * seq<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> -> Azure.Search.Documents.Indexes.Models.EntityLinkingSkill
Public Sub New (inputs As IEnumerable(Of InputFieldMappingEntry), outputs As IEnumerable(Of OutputFieldMappingEntry))

参数

inputs
IEnumerable<InputFieldMappingEntry>

技能的输入可以是源数据集中的列,也可以是上游技能的输出。

outputs
IEnumerable<OutputFieldMappingEntry>

技能的输出要么是搜索索引中的字段,要么是另一个技能可以用作输入的值。

例外

inputsoutputs 为 null。

适用于