Morning,
Forget the dynamic part, not realistic. But how about the ability to generate
enums for reference tables.
Table - AcctType
smallint typeid;
nvarchar(16) type;
Example
In the gui design select the reference table and define/augment as enum and then
within either base or derived class, add the enum
Requirement - smallint,int pk
string value (no spaces)
enum EAcctType
{
(first nvarchar) = 1,
and so on
}
I am sure there are other alternatives, but would be a nice feature