我正在尝试在后面的代码中分配 linq 数据源,但我有 IQueryable 查询想要在 where clouse 中使用任何函数(如 sql 中的子查询子句)分配
这是我的 sql 语句
select * from table1 where col1 in (select col1 from table1 where col2 like '%xx%')
如何将此clouse转换为后面的linq数据源代码
我正在尝试在后面的代码中分配 linq 数据源,但我有 IQueryable 查询想要在 where clouse 中使用任何函数(如 sql 中的子查询子句)分配
这是我的 sql 语句
select * from table1 where col1 in (select col1 from table1 where col2 like '%xx%')
如何将此clouse转换为后面的linq数据源代码