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
|
|
|
|
|
|
|
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. |
||
|
|
|
|
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/ |
||
|
|
|
|
MyGeneration got some Templates for Automatically generate Classes from Access Tables. |
||||
|
|
|
NHibernate is supported on Microsoft Access: http://www.hibernate.org/ LINQ to SQL and Entity Framework do not support Access. |
||
|
