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

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -