Ejemplo n.º 1
0
 public TableFluent(Type entityType, TableAttribute table)
 {
     _entityType = entityType;
     _properties = _entityType.GetProperties().ToDictionary(a => a.Name, a => a, StringComparer.CurrentCultureIgnoreCase);
     _table      = table;
 }
Ejemplo n.º 2
0
 public TableFluent(Type entityType, TableAttribute table)
 {
     _entityType = entityType;
     _properties = _entityType.GetPropertiesDictIgnoreCase();
     _table      = table;
 }
Ejemplo n.º 3
0
 public TableFluent(TableAttribute table)
 {
     _table = table;
 }