I have a Document class that stores the data of that document as a byte array.
I need to check the size of the array, using LINQ to Entities.
I have tried the following:
[long Linq query here...] o.Data.Length < 800000)
The problem is I get the following exception:
The LINQ expression node type 'ArrayLength' is not supported in LINQ to Entities."
Is there any other way to check the size of the byte array?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…