Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Way to use Linq to Oracle

Tags:

linq

oracle

I can connect with the DataContext to the Oracle database however I get errors in running the query against the oracle database. I looked at the SQL generated and it is for MSSQL and not Oracle PSQL.

Does anybody know of a decent easy to use wrapper to use LINQ against an Oracle Database?

like image 304
David Basarab Avatar asked Aug 27 '08 18:08

David Basarab


1 Answers

No, LINQ to SQL is very much MS SQL only - think of it as a client driver.

Microsoft is/was helping Oracle and DataDirect develop providers for Oracle and other non-MS database servers.

like image 82
Greg Hurlman Avatar answered Sep 19 '22 04:09

Greg Hurlman