Can someone advise me best approach to fetch cursor from oracle function.
Right now I am trying to achieve it by below code
Code: Select all
_dbContext.Database.SqlQuery<T>(queryText);
sample
Code: Select all
SELECT testFunc('test', 'test', 1, 0, 0) FROM DUAL
Vipul