Reputation: 1709
does any ADO.net alternative for .Net exist, just hypothetical? A friend of mine needs this maybe for his exam.
Upvotes: 4
Views: 4142
Reputation: 11
I developed something about 10 years ago for VB 6 and ASP. Last month, I updated it for .NET and it works great. Didn't have to touch a line of code.
ADO.NET uses the older ADODB recordsets and I'm doing the same thing. Faster, easier, maps directly to business objects. No limitations and enforces good n-tier programming. For some screenshots and code, take a look at http://andrewbbrown.com
Upvotes: 0
Reputation: 61
Although not an "alternative" You can use ODBMS as your persistance db which does not need to use Ado.net.
Upvotes: 1