public override bool IsRootEntity(System.Type type) { return(RootEntities.Contains(type)); }
public virtual bool IsEntity(System.Type type) { return(RootEntities.Contains(type) || type.GetBaseTypes().Any(t => RootEntities.Contains(t)) || HasDelayedEntityRegistration(type)); }
public bool IsDeclaredEntity(System.Type type) { return(RootEntities.Contains(type) || HasDelayedEntityRegistration(type)); }