I have the following class:
public class POCOConfiguration : EntityTypeConfiguration<POCO>
{
public POCOConfiguration()
{
}
}
POCOConfiguration instance = new POCOConfiguration();
How can I get the type POCO from the instance?
Thanks
1 Answer