In Microsoft Dynamics Business Central, the images can be saved in the [Tenant Media]
table. The field [Mime Type]
tells the type, and the field Content
stores the binary content (as varbinary
type).
I need to mirror the images of the goods to another database using the C# code. However, it seems that the Content
field does not store only the plain binary of the image.
Is the content encrypted somehow? When read to byte[]
, is it possible to get the image data?