因此,如果我有这样的 Oracle 查询:
SELECT * FROM xyz WHERE REGEXP_LIKE(col1, '^[0-9]+$');
如何REGEXP_LIKE
使用带有 Oracle.DataAccess 客户端的 LINQ to Entities 调用:
var q = from x in collection
where ??Oracle.REGEXP_LIKE(x.col1, "^[0-9]+$")??
select x;
Oracle.DataAccess 客户端是否支持这样的事情?