Example #1
0
 /// <summary>
 /// Adds a map to use in loading the entity
 /// </summary>
 /// <typeparam name="TMap">Type of map</typeparam>
 /// <returns>Load</returns>
 public Load <TEntity> With <TMap>()
     where TMap : IDataReaderMap, new()
 {
     this._map = new TMap();
     return(this);
 }