public ClassMapper()
 {
     Properties = new PropertyMapCollection();
     Keys       = new PropertyMapCollection();
     Table(typeof(T).Name);
 }
Beispiel #2
0
 protected ClassMap()
 {
     SchemaName  = string.Empty;
     TableName   = typeof(TEntity).Name;
     _properties = new PropertyMapCollection(typeof(TEntity));
 }