C# 클래스 FluentLinqToSql.Modifications.MappingModification

Base class for mapping modifications.
상속: IMappingModification
파일 보기 프로젝트 열기: JeremySkinner/FluentLinqToSql

공개 메소드들

메소드 설명
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