0

Reading the Telerik OpenAccess documentation, I see that I can set the data type of a Domain Class Property to an enumeration I have explicitly coded. Instead of coding them, can I use OpenAccess to generate (and maintain) enumeration types from my tables?

Mat
  • 470
  • 7
  • 12

1 Answers1

1

The Enum generation based on a database table is not supported out of the box by the Telerik OpenAccess ORM but after a short search in Google I found this Blog Post demonstrating how to achieve that by a standalone code generation template.

You could also add a feature request in the Ideas and Feedback portal of OpenAccess ORM for providing this functionality out of the box.

Dimitar Tachev
  • 575
  • 4
  • 14
  • I had been experimenting with T4 initially (even had some success with the very code you linked to), then decided to experiment with a few "bigger picture" tools: ADO DataSets, the Entity Framework, Open Access ORM, and others, but in the end, T4 and XML seems to give me the flexibility to automate a DAL without sacrificing my coding style or architecture. I think I'm going with T4. – Mat Jul 18 '13 at 15:14