c# - Entity Framework 'ArrayIndex' is not supported in LINQ to Entities -


in sql server db table, have binary column type.

i can't execute query, why ?

var data = (from x in model.mytable             x.binarycolumn[0] == 1             select x).firstordefault(); 

i the linq expression node type 'arrayindex' not supported in linq entities error

these expressions translated sql queries, , 1 of things cant do. take here more detail: linq entities doesn't recognize array index


Comments