in my SQL Server DB table, I have the binary
column type.
I can't execute the query, why ?
var data = (from x in model.MyTable
where x.BinaryColumn[0] == 1
select x).FirstOrDefault();
I get the The LINQ expression node type 'ArrayIndex' is not supported in LINQ to Entities
error