Exemplo n.º 1
0
 public RelationshipBuilderFor(
     FluentMappings.MappingsFluentEntity <TEntity> fluentEntity,
     Type tEntityType,
     RelationshipCollection relationships,
     string currentPropertyName)
     : base(fluentEntity, tEntityType, relationships)
 {
     _currentPropertyName = currentPropertyName;
 }
Exemplo n.º 2
0
        protected Type _tEntityType;         // This will differ from TEntity if using ForEachEntity mapping

        public RelationshipBuilder(
            FluentMappings.MappingsFluentEntity <TEntity> fluentEntity,
            Type tEntityType,
            RelationshipCollection relationships)
        {
            _fluentEntity = fluentEntity;
            _tEntityType  = tEntityType;
            Relationships = relationships;
        }
Exemplo n.º 3
0
 public TableBuilder(FluentMappings.MappingsFluentEntity <TEntity> fluentEntity)
 {
     _fluentEntity = fluentEntity;
 }
Exemplo n.º 4
0
 public MappingsFluentRelationships(FluentMappings.MappingsFluentEntity <TEntity> fluentEntity, bool publicOnly, Type entityType)
 {
     _fluentEntity = fluentEntity;
     _publicOnly   = publicOnly;
     _entityType   = entityType;
 }
Exemplo n.º 5
0
 public MappingsFluentTables(FluentMappings.MappingsFluentEntity <TEntity> fluentEntity, Type entityType)
 {
     _fluentEntity = fluentEntity;
     _entityType   = entityType;
 }
Exemplo n.º 6
0
 public MappingsFluentColumns(FluentMappings.MappingsFluentEntity <TEntity> fluentEntity, bool publicOnly, Type entityType)
 {
     _fluentEntity = fluentEntity;
     _publicOnly   = publicOnly;
     _entityType   = entityType;
 }
Exemplo n.º 7
0
 public ColumnMapBuilder(FluentMappings.MappingsFluentEntity <TEntity> fluentEntity, ColumnMapCollection mappedColumns)
 {
     _fluentEntity = fluentEntity;
     MappedColumns = mappedColumns;
 }
Exemplo n.º 8
0
 public TableBuilder(FluentMappings.MappingsFluentEntity <TEntity> fluentEntity, Type entityType)
 {
     _fluentEntity = fluentEntity;
     _entityType   = entityType;
 }