Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LINQ to SQL for Oracle.ODP

Does LINQ to SQL support Oracle.ODP? If not, is a similar offering from Oracle available or in the works?

like image 586
LBushkin Avatar asked Oct 12 '09 20:10

LBushkin


2 Answers

LINQ to SQL only supports SQL Server. For LINQ to Oracle, you'll want Entities, LINQ for nHibernate, or DbLinq to name a few.

Of those, DbLinq is intended to be the closest thing to an exact port of LINQ to SQL for other databases.

like image 113
Rex M Avatar answered Sep 23 '22 03:09

Rex M


DevArt offers a provider for Oracle with LINQ support here. They also provide a direct mode where there is no need to install an oracle client and support for ADO.NET Entity framework.

like image 43
vzczc Avatar answered Sep 19 '22 03:09

vzczc