regex - Call REGEXP_LIKE using LINQ to Entities with Oracle -


so if have oracle query this:

select * xyz regexp_like(col1, '^[0-9]+$'); 

how can call regexp_like using linq entities oracle.dataaccess client:

var q = x in collection         ??oracle.regexp_like(x.col1, "^[0-9]+$")??         select x; 

is supported oracle.dataaccess client?

so solution me open connection db (ado.net) , execute raw sql...i dabbled trying create custom linq function, would've taken long figure out given relative simplicity of "hacking" it.


Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -