views:

24

answers:

1

Is it possible to use the DataContext class to connect to an Oracle DB?

I am reading some examples on MSDN

I need an example where the context is used to connect to Oracle.

+1  A: 

DataContexts are specific to LINQ-to-SQL and thus SQL Server. If you want an ORM for Oracle, you need to look at alternatives like the Microsoft Entity Framework or NHibernate.

Jason