Persistence layer for C# .Net

  • Thread starter Thread starter Matheus Eduardo
  • Start date Start date
M

Matheus Eduardo

Hi everyone,

I'm looking for an persistence layer for C# and .NET
Framework, like Sun JDO or Castor JDO for Java. Does anyone
could help me?

Greetings in advance.


Matheus Eduardo
Federal University of Minas Gerais
 
Matheus,

I am not too familiar with Sun JDO (Java Data Objects?), but it sounds
like you might want something like object mapping technology, mapping fields
on the class to fields on the database. There is nothing in the underlying
framework that does that right now, but I think that there are some
third-party products that do this.

Hope this helps.
 
Have a look at

http://ojb-net.sourceforge.net/

http://sourceforge.net/projects/ojb-net

OJB.NET is an object-to-relational persistence tool for the .NET platform.
It enables applications to transparently store and retrieve .NET objects
using relational databases. Ported from OJB at http://db.apache.org/ojb

Regards

Marco

Nicholas Paldino said:
Matheus,

I am not too familiar with Sun JDO (Java Data Objects?), but it sounds
like you might want something like object mapping technology, mapping fields
on the class to fields on the database. There is nothing in the underlying
framework that does that right now, but I think that there are some
third-party products that do this.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Matheus Eduardo said:
Hi everyone,

I'm looking for an persistence layer for C# and .NET
Framework, like Sun JDO or Castor JDO for Java. Does anyone
could help me?

Greetings in advance.


Matheus Eduardo
Federal University of Minas Gerais
 
Back
Top