Database table has stored document in varbinary.
So i can get in byte[] in C# code.
Now How can i export this byte[] JSON file field.
if (item.IS_VIDEO == 0)
{
    var content = ctx.DOCUMENT_TABLE.First(a => a.document_id == item.document_id).DOCUMENT_CONTENT;
    if (content != null)
    {
        publicationClass.document_content = System.Text.Encoding.Default.GetString(content); //for export to json field
    }
}
is this a way to export byte[] file to JSON?
 
    