C# 클래스 WriteAndQuery.DataClass

This class is mapped in the mapping.xml file.
파일 보기 프로젝트 열기: azavea/fastdao

공개 프로퍼티들

프로퍼티 타입 설명
ID int
NotMapped double

공개 메소드들

메소드 설명
DataClass ( ) : System

The only requirement FastDAO puts on your data classes is that they must have a default constructor (I.E. one that takes no parameters).

DataClass ( int id, string name ) : System

Other constructors are fine to have if you'd like.

메소드 상세

DataClass() 공개 메소드

The only requirement FastDAO puts on your data classes is that they must have a default constructor (I.E. one that takes no parameters).
public DataClass ( ) : System
리턴 System

DataClass() 공개 메소드

Other constructors are fine to have if you'd like.
public DataClass ( int id, string name ) : System
id int
name string
리턴 System

프로퍼티 상세

ID 공개적으로 프로퍼티

FastDAO can access fields...
public int ID
리턴 int

NotMapped 공개적으로 프로퍼티

FastDAO ignores fields/properties not mapped in the mapping file.
public double NotMapped
리턴 double