/// <summary>
 /// Gets the IEntityType of the specified ClrType.
 /// </summary>
 /// <param name="type">The ClrType to get the IEntityType from.</param>
 /// <returns>
 /// An IEntityType specified by the given ClrType.
 /// </returns>
 public IEntityType FindEntityTypeByClrType(Type type)
 {
     return(EntitiesRepo.FindEntityTypeByClrType(type));
 }