タイムスタンプ列を持つ sqlserver テーブルがあります。次のような linq クエリをフィルター処理するために使用しようとしています。
byte[] filtroTimeStamp = SessionBag.Current.mesasTimeStamp;
var ubicAbiertas = from uA in db.TableA
select uA;
ubicAbiertas = ubicAbiertas.Where(
y => y.BitAbierta == true
& y.BitBloqueada == true
& y.TimeStampUltimoCambio == filtroTimeStamp);
この方法を試してみると、エラーが表示されます: operator & can't be applied to operands of type bool and byte[]
Byte[] 値を linq Query のフィルターとして使用するにはどうすればよいですか?