C# Class WriteAndQuery.DataClass

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

Méthodes publiques

Свойство Type Description
ID int
NotMapped double

Méthodes publiques

Méthode 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 méthode

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

DataClass() public méthode

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

Property Details

ID public_oe property

FastDAO can access fields...
public int ID
Résultat int

NotMapped public_oe property

FastDAO ignores fields/properties not mapped in the mapping file.
public double NotMapped
Résultat double