C# Class Azavea.Open.DAO.ClassMapColDefinition

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

Public Properties

Property Type Description
Column string
Property string
Type string

Public Methods

Method Description
ClassMapColDefinition ( ) : System

Empty constructor

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

Constructor to populate all the needed properties.

Method Details

ClassMapColDefinition() public method

Empty constructor
public ClassMapColDefinition ( ) : System
return System

ClassMapColDefinition() public method

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).
return System

Property Details

Column public_oe property

The name of the column in the data source.
public string Column
return string

Property public_oe property

The name of the property on the data class type.
public string Property
return 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
return string