I'm using the Entity Framework 4.1 with Code First approach. I'm able to get the storage model types and column names of my entities:...var items = context.ObjectContext.MetadataWorkspace.GetItems<EntityType>(DataSpace.SSpace);
foreach (var i in items)
{...