RadzenImage from byte array

I have a database that includes a product image stored as a byte array. I have the byte array data loaded into a model class. How can I display the image in a RadzenImage component as part of a RadzenDataGrid?

Thanks,
Tim

There is no such functionality in RadzenImage:

Looking at some other issues I see what appears to be a solution but the image does not render. Is there a tweak necessary to pass the base64 string to what Path= is looking for?

The RadzenImage code

The method to convert to PNG base64

public string GetImage(byte[]? image)
{
    if (image != null)
    {
        return $"data:image/png;base64, {Convert.ToBase64String(image)}";
    }
    else
    {
        return string.Empty;
    }
}

The Path attribute is rendered as the src attribute of the <img> element. If your base64 string works with a regular <img> it will work with RadzenImage as well.