C# Класс Castle.ActiveRecord.HasManyAttribute

Наследование: RelationAttribute
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
compositeKeyColumns String[]
customCollectionType System.Type
fetchMethod FetchEnum
hasDependentObjects bool
keyColumn String

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

Метод Описание
HasManyAttribute ( ) : System

Initializes a new instance of the HasManyAttribute class.

HasManyAttribute ( Type mapType ) : System

Initializes a new instance of the HasManyAttribute class.

HasManyAttribute ( Type mapType, String keyColumn, String table ) : System

Initializes a new instance of the HasManyAttribute class.

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

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

Initializes a new instance of the HasManyAttribute class.
public HasManyAttribute ( ) : System
Результат System

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

Initializes a new instance of the HasManyAttribute class.
public HasManyAttribute ( Type mapType ) : System
mapType System.Type Type of the map.
Результат System

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

Initializes a new instance of the HasManyAttribute class.
public HasManyAttribute ( Type mapType, String keyColumn, String table ) : System
mapType System.Type Type of items in this association
keyColumn String The key column.
table String The table.
Результат System

Описание свойств

compositeKeyColumns защищенное свойство

The composite columns Cannot exist with keyColumn != null
protected String[] compositeKeyColumns
Результат String[]

customCollectionType защищенное свойство

Provides a custom collection type.
protected Type,System customCollectionType
Результат System.Type

fetchMethod защищенное свойство

Whether we do outer join fetching for this collection
protected FetchEnum fetchMethod
Результат FetchEnum

hasDependentObjects защищенное свойство

Whether the target type is for dependent objects or not
protected bool hasDependentObjects
Результат bool

keyColumn защищенное свойство

The key column Cannot exist if compositeKeyColumns has a value
protected String keyColumn
Результат String