I'm digging deeper into Entity Framework Templating and want to find out more about the GetSourceSchemaTypes routine, used here as an example
foreach (EntityType entity in GetSourceSchemaTypes<EntityType>().OrderBy(e => e.Name))
{
}
It appears to be part of the Microsoft.VisualStudio.TextTemplating
namespace but I can't find that on MSDN.
I'm looking for something specific but the answer may be revealed in the definition of this routine.
thanks