Contents tagged with ADO.NET
-
Custom .NET Data Provider
-
Vote of Disconfidence to Entity Framework
A friend of mine has found the following problem with Entity Framework 4:
-
Entity Framework Code First: Get Entities From Local Cache or the Database
Entity Framework Code First makes it very easy to access local (first level) cache: you just access the DbSet<T>.Local property. This way, no query is sent to the database, only performed in already loaded entities.
-
ODAC Entity Framework and LINQ Beta Released
At last! Get it from here.
-
ODP.NET Associative Arrays
Through ODP.NET you can use Oracle's Associative Array feature. Unfortunately, there is a limitation: you cannot have associative arrays with an index type other that number.
-
Using TransactionScope with ODP.NET
If you are using Oracle Database Provider for .NET (ODP.NET) and you want to use TransactionScope'd transactions, you may have gotten the dreaded "Data provider internal error(-3000) [System.String]" exception. I'll explain how I fixed it.