AwesomeSauce.Configuration.Actions.TypePoolExtensions.EntityTypes C# (CSharp) Метод

EntityTypes() публичный статический Метод

public static EntityTypes ( this pool ) : IEnumerable
pool this
Результат IEnumerable
        public static IEnumerable<Type> EntityTypes(this TypePool pool)
        {
            return (from type in pool.TypesMatching(AwesomeConfiguration.AwesomeEntities)
                    where type.IsConcrete()
                    select  type).Distinct();
        }
TypePoolExtensions