Пример #1
0
 public static bool TryGetTable(Type entityType, out MetaTable table)
 {
     MetaModel.CheckForRegistrationException();
     if (entityType == null)
     {
         throw new ArgumentNullException("entityType");
     }
     return(MetaModel.MetaModelManager.TryGetTable(entityType, out table));
 }