C# Class IQMap.IQClass

Inheritance: System.Attribute
Show file Open project: jamietre/IQMap

Public Properties

Property Type Description
ExcludeByDefault bool
NeverCache bool
PrimaryKey string
SelectAll bool
TableName string

Public Methods

Method Description
IQClass ( ) : System
IQClass ( string tableName, string primaryKey ) : System

Method Details

IQClass() public method

public IQClass ( ) : System
return System

IQClass() public method

public IQClass ( string tableName, string primaryKey ) : System
tableName string
primaryKey string
return System

Property Details

ExcludeByDefault public property

When true, class properties are excluded (rather than included) by default. Only properties identified with DBField will be included.
public bool ExcludeByDefault
return bool

NeverCache public property

Never cache queries based on this class
public bool NeverCache
return bool

PrimaryKey public property

The primary key column for this table.
public string PrimaryKey
return string

SelectAll public property

When true, use "*" instead of generating fields for select statements.
public bool SelectAll
return bool

TableName public property

The name of the SQL table to which this class is bound
public string TableName
return string