We all know that when we create an anonymous class like this:
var Employee = new { ID = 5, Name= "Prashant" };
...at run time it will be of type:
<>f__AnonymousType0<int,string>
Is there any way to specify a meaningful name to such classes?
public class Employee {}