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