C# Класс FluentLinqToSql.Modifications.MappingModification

Base class for mapping modifications.
Наследование: IMappingModification
Показать файл Открыть проект

Открытые методы

Метод Описание
ApplyTo ( IMapping mapping ) : void

Applies the modification to a particular mapping.

Защищенные методы

Метод Описание
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.

Описание методов

ApplyTo() публичный Метод

Applies the modification to a particular mapping.
public ApplyTo ( IMapping mapping ) : void
mapping IMapping The mapping to which the modification should be applied
Результат void

HandleBelongsToMappings() защищенный Метод

Applies the modification to many-to-one mappings.
protected HandleBelongsToMappings ( IEnumerable mappings ) : void
mappings IEnumerable The mappings to which the modification should be applied
Результат void

HandleColumnMappings() защищенный Метод

Applies the modification to column mappings.
protected HandleColumnMappings ( IEnumerable mappings ) : void
mappings IEnumerable The column mappings to which the modification should be applied.
Результат void

HandleHasManyMappings() защищенный Метод

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.
Результат void

HandleHasOneMappings() защищенный Метод

Applies the modification to one-to-one mappings.
protected HandleHasOneMappings ( IEnumerable mappings ) : void
mappings IEnumerable The mappings to which the modification should be applied.
Результат void

HandleMapping() защищенный Метод

Applies the modification to the mapping.
protected HandleMapping ( IMapping mapping ) : void
mapping IMapping The mapping to which the modification should be applied.
Результат void