Is there an easy way to get an EntityFactory from a string at runtime without writing custom code? Something like this:
string entityName = "EmployeeEntity";
IEntityFactory2 myFactory = /* some magic with entityName */;
IEntityBase2 myEntity = myFactory.Create();
Also, there is a EntityFactorySelector form in ORMSupportClasses. How can this form be used? I only ever get an empty combobox.
Thanks,
Kevin