C# Класс WriteAndQuery.DataClass

This class is mapped in the mapping.xml file.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
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