I was wondering whether there be any performance issue with having a lot of trivial classes. I'm creating these classes in order to dig out information for EDM Tables:
A simple example:
class TableNamesClass { public string TableNames { get; set; } }
My main concern for the performance is time for loading of the program. Thanks.