C# 클래스 Azavea.Open.DAO.ClassMapColDefinition

A class that encapsulates the properties need to define a column mapping in a ClassMapping object.
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
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