标签: sql-server entity-framework sql-like varbinary
我在SQL Server中有一个类型为varbinary的列的表
varbinary
如何在Entity Framework中获取包含此表中字节数组的记录?
像这样的查询:
var query = from x in context.table where x.varbinaryfield like (byte array) select x;
提前致谢。