public override object GetValue(IFieldSet fields, IPage page = null)
 {
     var linkedKeyword = fields.GetLinkedKeyword(SchemaFieldName);
     if (linkedKeyword != null)
     {
         return KeywordViewModelBuilder.Build(linkedKeyword, TargetType);
     }
     return null;
 }
        public override object GetValue(IFieldSet fields, IPage page = null)
        {
            var linkedKeyword = fields.GetLinkedKeyword(SchemaFieldName);

            if (linkedKeyword != null)
            {
                return(KeywordViewModelBuilder.Build(linkedKeyword, TargetType));
            }
            return(null);
        }