public static Guid GetGuid(this IResultSet result, int index)
        {
#if NETCOREAPP
            return(new Guid(result.GetBlob(index)));
#else
            return(new Guid(result.GetBlob(index).ToArray()));
#endif
        }