In my database i have a column with the datatype varbinary(MAX). I i'm trying to pass it into a datatable but get stuck on typeconversion.

  private DataTable getData(int id)
        {
            DataTable dt = new DataTable();


            var result = from r in db.files where r.Id== id select new { filename = r.filename , filetype = r.filetype , data = r.data };
            if (result != null)
            {
                dt.Columns.Add("filename ", typeof(string));
                dt.Columns.Add("filetype ", typeof(string));
                dt.Columns.Add("data", typeof(byte));
                foreach (var i in result) 
                {
                    dt.Rows.Add(i.filename , i.filetype , i.data);
                }

                return dt;
            }
            return null;
        }

i get at conversion error in dt.Columns.Add("data", typeof(byte));

What datatype, if any, should the column be.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.