public static PostgresExtensionData Deserialize([NotNull] string value)
            {
                Check.NotEmpty(value, nameof(value));

                try
                {
                    var data = new PostgresExtensionData();

                    // ReSharper disable PossibleInvalidOperationException
                    var position = 0;
                    data.Name    = ExtractValue(value, ref position);
                    data.Schema  = ExtractValue(value, ref position);
                    data.Version = ExtractValue(value, ref position);
                    // ReSharper restore PossibleInvalidOperationException

                    return(data);
                }
                catch (Exception ex)
                {
                    throw new ArgumentException(RelationalStrings.BadSequenceString, ex);
                }
            }
 void SetData(PostgresExtensionData data)
 {
     Model[_annotationName] = data.Serialize();
 }
 PostgresExtensionData GetData() => PostgresExtensionData.Deserialize((string)Model[_annotationName]);