Frans
Tue Dec 20 02:13:49 CST 2005
basulasz wrote:
> Thanks a lot. Is Visual Studio 2005, or in other words .NET 2.0
> supports relational object mapping by default? Or can we do that by
> your instructions by myself?
There's no build in O/R mapper in .NET 2.0 / VS.NET 2005. You have to
use a 3rd party application for that, like LLBLGen Pro
(
http://www.llblgen.com )
You can try yourself of course, however as it took me 3 years of 10
hours a day, 7 days a week, to write mine, I don't think it will be
feasable for anyone to 'do that for their current project'.
FB
--
------------------------------------------------------------------------
Get LLBLGen Pro, productive O/R mapping for .NET:
http://www.llblgen.com
My .NET blog:
http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------
>
> Thanks for help...
>
> "Mahesh Devjibhai Dhola [MVP]" wrote:
>
> > May this helps you,
> > - Serialize your object at run-time using binary formatter into
> > byte stream - Store the binary data into sql server database as
> > BLOB like how you store images etc as binary data
> > - On extraction, get the binary data stream as byte[] and
> > deseializer it to get actual object
> >
> > Or You may want to use the way given in the following link,
> >
http://www.codeproject.com/cs/database/persistedobject.asp
> >
> > HTH,
> > "basulasz" <basulasz@discussions.microsoft.com> wrote in message
> > news:67964466-E8B7-4D6F-A3A9-43290EEE6BB6@microsoft.com...
> > > I want to store objects that i create programmatically in C#,
> > > like in J2EE (which is callad i think relational mapping or
> > > sometihng like this). I
> > want
> > > to create objects that i use for my enterprise applications and
> > > store them
> > in
> > > database after execution. And I want the columns and rows related
> > > to my objects to be created and filled automatically.
> > >
> > > How can i do that. Thanks?