vote up 1 vote down star

Is there any way that I can get my .NET classes automatically generated from the Tables in Access. Anything like ORM available? thx in adv

flag

4 Answers

vote up 0 vote down

You can add a DataSet to your project (Add New Item) and then drag-and-drop your tables onto the dataset-view. This will automatically generate classes for the tables.

link|flag
vote up 1 vote down

You can either use an ORM such as nHibernate, here's a partial older list of ORM's http://www.theserverside.net/news/thread.tss?thread_id=29914

Or you could use code generation techniques, such as CodeSmith http://www.codesmithtools.com/

link|flag
vote up 0 vote down

MyGeneration got some Templates for Automatically generate Classes from Access Tables.

http://www.mygenerationsoftware.com/portal/default.aspx

link|flag
At least with NHibernate you've got the support knowing that this is a product that is tried and tested. – Ray Booysen Jan 4 '09 at 15:50
Yes, but you can use both MyGeneration and NHibernate to generated hbm xml files and classes :) – Yoann. B Jan 4 '09 at 15:54
vote up 0 vote down

NHibernate is supported on Microsoft Access: http://www.hibernate.org/

LINQ to SQL and Entity Framework do not support Access.

link|flag
I didn't think Entity Framework cared what the DB was? Or is this a designer issue? – AnthonyWJones Jan 4 '09 at 15:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.