예제 #1
0
 public ClassMapper()
 {
     Properties = new PropertyMapCollection();
     Keys       = new PropertyMapCollection();
     Table(typeof(T).Name);
 }
예제 #2
0
파일: ClassMap.cs 프로젝트: PCBob/Applibs
 protected ClassMap()
 {
     SchemaName  = string.Empty;
     TableName   = typeof(TEntity).Name;
     _properties = new PropertyMapCollection(typeof(TEntity));
 }