C# Class FluentLinqToSql.Modifications.MappingModification

Base class for mapping modifications.
Inheritance: IMappingModification
显示文件 Open project: JeremySkinner/FluentLinqToSql

Public Methods

Method Description
ApplyTo ( IMapping mapping ) : void

Applies the modification to a particular mapping.

Protected Methods

Method Description
HandleBelongsToMappings ( IEnumerable mappings ) : void

Applies the modification to many-to-one mappings.

HandleColumnMappings ( IEnumerable mappings ) : void

Applies the modification to column mappings.

HandleHasManyMappings ( IEnumerable mappings ) : void

Applies the modification to one-to-many mappings.

HandleHasOneMappings ( IEnumerable mappings ) : void

Applies the modification to one-to-one mappings.

HandleMapping ( IMapping mapping ) : void

Applies the modification to the mapping.

Method Details

ApplyTo() public method

Applies the modification to a particular mapping.
public ApplyTo ( IMapping mapping ) : void
mapping IMapping The mapping to which the modification should be applied
return void

HandleBelongsToMappings() protected method

Applies the modification to many-to-one mappings.
protected HandleBelongsToMappings ( IEnumerable mappings ) : void
mappings IEnumerable The mappings to which the modification should be applied
return void

HandleColumnMappings() protected method

Applies the modification to column mappings.
protected HandleColumnMappings ( IEnumerable mappings ) : void
mappings IEnumerable The column mappings to which the modification should be applied.
return void

HandleHasManyMappings() protected method

Applies the modification to one-to-many mappings.
protected HandleHasManyMappings ( IEnumerable mappings ) : void
mappings IEnumerable The one-to-many mappings to which the modification should be applied.
return void

HandleHasOneMappings() protected method

Applies the modification to one-to-one mappings.
protected HandleHasOneMappings ( IEnumerable mappings ) : void
mappings IEnumerable The mappings to which the modification should be applied.
return void

HandleMapping() protected method

Applies the modification to the mapping.
protected HandleMapping ( IMapping mapping ) : void
mapping IMapping The mapping to which the modification should be applied.
return void