C# Class WriteAndQuery.DataClass

This class is mapped in the mapping.xml file.
Show file Open project: azavea/fastdao

Public Properties

Property Type Description
ID int
NotMapped double

Public Methods

Method Description
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.

Method Details

DataClass() public method

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

DataClass() public method

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

Property Details

ID public property

FastDAO can access fields...
public int ID
return int

NotMapped public property

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