Results 1 to 2 of 2

Thread: Objective C vs VB.net

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2007
    Posts
    544

    Objective C vs VB.net

    At first I was very disappointed when I learn Objective C.

    What the hell. For every member object I have to declare the variable 3 times.

    One in the declaration. One for property declaration. One to tell the compiler to synthesize all the function. Another one to release all those members from memory.

    Then I learn about Core Data. I generate diagram, poof the classes are made from me and a lot of things are done behind the screen of that visible classes.

    Basically Core Data in Objective C represents some form of relational databases. Of course those databases can have relationship, including many to many relationship. The additional detail of having a third table for many to many relationship is already done.

    Then, there is indexed property so we can search faster. That's also done.

    Does VB.net has something like that? What's the equivalent with VB.net.

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Objective C vs VB.net

    I've never used Objective C or Core Data but it sounds like you would get a similar result by generating a model using the Entity Framework, which is built into VS and the .NET Framework. It's not the only option though. You can also have the IDE generate a typed DataSet or a LINQ to SQL model. There are also third-party options, like LLBLGen, NHibernate and others.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width