Model
public partial class IndustryLandingHeader :EntityModel
{
[TextField]
public virtual string Headline { get; set; }
[TextField]
public virtual string Type { get; set; }
[KeywordField]
public virtual KeyWordMetaSchema ParentIndustry { get; set; }
[KeywordField]
public virtual List<KeyWordMetaSchema> SubIndustries { get; set; }
[TextField]
public virtual string LabelForSubIndustry { get; set; }
[KeywordTitleField]
public virtual List<KeyWordMetaSchema> AdditionalKeyword { get; set; }
}
need to combine SUBINDUSTRIES and ADDITIONALKEYWORD variable alone as single variable Here I have two different variable name needs to be combined to single variable .How to do that?