Method | Description | |
---|---|---|
FromTerm ( ) : System | ||
SubQuery ( |
Creates a FromTerm which represents a sub-query.
|
|
SubQuery ( string query, string alias ) : |
Creates a FromTerm which represents a sub-query.
|
|
Table ( |
||
Table ( string name ) : FromTerm |
Creates a FromTerm which represents a database table or view. Creates a |
|
Table ( string tableName, string alias ) : FromTerm |
Creates a FromTerm which represents a database table or view.
|
|
Table ( string tableName, string alias, string ns ) : FromTerm |
Creates a FromTerm which represents a database table or view. Use the ns parameter to resolve table ownership |
|
Table ( string tableName, string alias, string ns1, string ns2 ) : FromTerm |
Creates a FromTerm which represents a database table or view. Use the ns1 parameter to set table database and ns2 to set table owner. |
|
TermRef ( string name ) : FromTerm |
Creates a FromTerm which refernces abother FromTerm. Use TermRef to reference other terms of a from clause by |
public static SubQuery ( |
||
query | A SelectQuery instance representing the sub query | |
alias | string | term alias |
return |
public static SubQuery ( string query, string alias ) : |
||
query | string | sub-query sql |
alias | string | term alias |
return |
public static Table ( |
||
tableName | ||
alias | string | |
return |
public static Table ( string name ) : FromTerm | ||
name | string | Name of the table or view |
return | FromTerm |
public static Table ( string tableName, string alias ) : FromTerm | ||
tableName | string | Name of the table or view |
alias | string | Alias of the FromTerm |
return | FromTerm |
public static Table ( string tableName, string alias, string ns ) : FromTerm | ||
tableName | string | Name of the table or view |
alias | string | Alias of the FromTerm |
ns | string | Namespace of the table. |
return | FromTerm |
public static Table ( string tableName, string alias, string ns1, string ns2 ) : FromTerm | ||
tableName | string | Name of the table or view |
alias | string | Alias of the FromTerm |
ns1 | string | First table namespace |
ns2 | string | Second table namespace |
return | FromTerm |
public static TermRef ( string name ) : FromTerm | ||
name | string | The name of the referenced term. |
return | FromTerm |