In SQL I am trying to read a column from a table that is a System.Byte[], I want this to become a string or some data type to where I can parse it and set it into new columns.
select Data from RandomTable where Id = '00000000-0000-0000-0000-000000000000'
the Data is a System.Byte[], is there a convert function I can use and then parse it accordingly?
Thank you