C# Класс Azavea.Open.DAO.ClassMapColDefinition

A class that encapsulates the properties need to define a column mapping in a ClassMapping object.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Column string
Property string
Type string

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

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

Empty constructor

ClassMapColDefinition ( string name, string column, string type ) : System

Constructor to populate all the needed properties.

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

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

Empty constructor
public ClassMapColDefinition ( ) : System
Результат System

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

Constructor to populate all the needed properties.
public ClassMapColDefinition ( string name, string column, string type ) : System
name string The object property name.
column string The data source column name.
type string The data type (optional).
Результат System

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

Column публичное свойство

The name of the column in the data source.
public string Column
Результат string

Property публичное свойство

The name of the property on the data class type.
public string Property
Результат string

Type публичное свойство

The string name of the data type (not necessarily a .NET class name). May be null if you don't want to exlicitly map the type.
public string Type
Результат string