I have a number of entity objects that are structurally the same but the naming convention is different e.g Products1, Products2, Products3 (this is part of the legacy db schema and I can't do much about this).
These classes are of different types as far as CLR is concerned and unfortunately since the design code is auto-generated I can't slap an interface on these guys to show commonality. So, my question is: Is there a way to retrieve the entity object by name?
I'd basically like to avoid switch/case business when applying essentially the same logic to these objects.
You could build an Expression tree to query for the object or objects in question:
Or if you want a collection of objects
Of course if your desired query is very long, this can get out of hand, and you should consider adding in the necessary interface using partial classes, as Justin Morgan suggested.
Note that this method assumes that your ObjectSet collection is the same name as your object, plus an "s", ie, "Invoice" to "Invoices". If that's not the case, ie, "Person" to "People", then you could use System.Data.Entity.Design.PluralizationServices.PluralizationService to get the proper name