I'm looking into generating types dynamically, ie. TypeBuilder
, Reflection.Emit
..
Is it ever possible to get design-time code completion for such created types? i.e typename recognition, list of properties after typing "obj1.
" and such.
Full Context: Trying to generate entities and data access objects corresponding to database tables in runtime. Code generation is an option, but I wanted to see if I could do without it. Have some experience in reflection, but none in type building the reflection.emit way.