C# Class Azavea.Open.DAO.ClassMapColDefinition

A class that encapsulates the properties need to define a column mapping in a ClassMapping object.
Afficher le fichier Open project: azavea/net-dao

Méthodes publiques

Свойство Type Description
Column string
Property string
Type string

Méthodes publiques

Méthode Description
ClassMapColDefinition ( ) : System

Empty constructor

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

Constructor to populate all the needed properties.

Method Details

ClassMapColDefinition() public méthode

Empty constructor
public ClassMapColDefinition ( ) : System
Résultat System

ClassMapColDefinition() public méthode

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).
Résultat System

Property Details

Column public_oe property

The name of the column in the data source.
public string Column
Résultat string

Property public_oe property

The name of the property on the data class type.
public string Property
Résultat string

Type public_oe property

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
Résultat string