C# Class IQMap.IQClass

Inheritance: System.Attribute
显示文件 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_oe 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_oe property

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

PrimaryKey public_oe property

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

SelectAll public_oe property

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

TableName public_oe property

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