Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / New Users / August 2005

Tip: Looking for answers? Try searching our database.

object-relational-mapping, DAL generator

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
DraguVaso - 09 Aug 2005 09:41 GMT
Hi,

I'm ne to this subject, and has been looking around for some software that
does the Object-Relational-Mapping, and generates the Data Access Layer. I
found alreaddy a lot of application that doesn ice stuff, but none of them
was really exactly what I was looking for. It need to be:
- free (!!)
- generates the code in VB.NET
- doesn't use dll's, but generates just the code (!!)
- preferably doesn't use stored procedures, but puts the code in the DAL
- preferably open source

The best I found until now was LLBLGen, but it makes stored procedures :-(
I'm planning to use it with VB.NET 2003 and 2005, and SQL SERVER.

Can anybody help me with this? Any help our hints would be really
appreciated!

Thansk a lot,

Pieter
Ken Tucker [MVP] - 09 Aug 2005 11:24 GMT
Hi,

       Check out olymars
http://www.microsoft.com/downloads/details.aspx?familyid=84b1b215-7179-4ce8-9e32
-2f89ce86927e&displaylang=en


Ken
----------------
Hi,

I'm ne to this subject, and has been looking around for some software that
does the Object-Relational-Mapping, and generates the Data Access Layer. I
found alreaddy a lot of application that doesn ice stuff, but none of them
was really exactly what I was looking for. It need to be:
- free (!!)
- generates the code in VB.NET
- doesn't use dll's, but generates just the code (!!)
- preferably doesn't use stored procedures, but puts the code in the DAL
- preferably open source

The best I found until now was LLBLGen, but it makes stored procedures :-(
I'm planning to use it with VB.NET 2003 and 2005, and SQL SERVER.

Can anybody help me with this? Any help our hints would be really
appreciated!

Thansk a lot,

Pieter
W.G. Ryan MVP - 09 Aug 2005 15:35 GMT
Write Frans an email and tell him that only idiots don't take advantage of
stored procedures.  Stick a Bush/Cheney 2008 line in your signature for good
measure.  If you do this, I'll flip the bill for a copy of LLBLGenPro.

On  a serious note though - if Stored Procs are the only thing in between
using LLBLGenPro and not, I'd SERIOUSLY rethink that.  I was  a card
carrying member of the Stored Procedures or Die club - but Frans has shown
me the folly of my ways.  I still use them but I'm not ambivalent about
using generated sql.   As far as free- remember that total cost is what
matters, not sticker price.  I don't know of a single llblgenpro user that
doesn't swear by it.  There are a lot of OR Mappers out there, but IMHO,
LLBLGenPro and Deklarit are way ahead of the pack and while neither are
free, both are a steal when you compare what you got compared to what you
pay. If I still haven't convinced you though - you may want to check out
Gentle http://sourceforge.net/projects/gopf
> Hi,
>
[quoted text clipped - 17 lines]
>
> Pieter
Frans Bouma [C# MVP] - 10 Aug 2005 08:52 GMT
> Write Frans an email and tell him that only idiots don't take
> advantage of stored procedures.  Stick a Bush/Cheney 2008 line in
> your signature for good measure.  If you do this, I'll flip the bill
> for a copy of LLBLGenPro.

    LOL :D

        FB

> On  a serious note though - if Stored Procs are the only thing in
> between using LLBLGenPro and not, I'd SERIOUSLY rethink that.  I was
[quoted text clipped - 25 lines]
> > Can anybody help me with this? Any help our hints would be really
> > appreciated!

Signature

------------------------------------------------------------------------
Get LLBLGen Pro, productive O/R mapping for .NET: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------

DraguVaso - 10 Aug 2005 10:28 GMT
Dear Frans,

Apparently only idiots don't take advantage of stored procedures :-)

Pieter
*****
Bush/Cheney 2008: those two guys are idiots, especially the first one: I
still don't get the clue about Bush his speeeches:  Explanation 1: He writes
them himself, and he is really so dumb that they are of such a low level,
and nobody in his advisors dares to tell it to him. Explanation 2: His
advisors writes them, and he and his advisors are really so dumb not to
notice they are kind of (a lot) childish.
*****

PS: Dear W. G. ryan: I think I deserved my LLBLGenPro now?

> > Write Frans an email and tell him that only idiots don't take
> > advantage of stored procedures.  Stick a Bush/Cheney 2008 line in
[quoted text clipped - 34 lines]
> > > Can anybody help me with this? Any help our hints would be really
> > > appreciated!
Robbe Morris [C# MVP] - 10 Aug 2005 01:43 GMT
But, it does write ADO.NET code specifically to interact with
stored procedures for SQL Server or Microsoft Access.

And, it writes the layer in C#.  You could also adjust the
source code of the generator to write VB.NET instead.
Wouldn't be all that much work.

http://www.eggheadcafe.com/articles/adonet_source_code_generator.asp

Signature

Robbe Morris - 2004/2005 Microsoft MVP C#

Earn money answering .NET Framework
messageboard posts at EggHeadCafe.com.
http://www.eggheadcafe.com/forums/merit.asp

> Hi,
>
[quoted text clipped - 17 lines]
>
> Pieter
Frans Bouma [C# MVP] - 10 Aug 2005 08:57 GMT
> Hi,
>
[quoted text clipped - 4 lines]
> need to be:  
> - free (!!)

    Don't get me wrong, but a Data access solution which is mature, saves
you a LOT of time, and thus a LOT of money, so that it must be free is
a bit odd. You win back the money spend on a data-access solution in no
time.

> - generates the code in VB.NET
> - doesn't use dll's, but generates just the code (!!)

    the one O/R mapper I'm aware of which did this was Pragmatier which is
now outof business. A solid O/R mapper layer is a lot of code, and a
lot of it is generic, so it's better of in a compiled assembly.

> - preferably doesn't use stored procedures, but puts the code in the
> DAL - preferably open source

    That's good :)

> The best I found until now was LLBLGen, but it makes stored
> procedures :-( I'm planning to use it with VB.NET 2003 and 2005, and
> SQL SERVER.

    The old LLBLGen indeed creates stored procedures, its big brother
LLBLGen Pro doesn't (but isn't free as well :P)

        Frans

Signature

------------------------------------------------------------------------
Get LLBLGen Pro, productive O/R mapping for .NET: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.