Sets the text that should appear after the FROM

Namespace:  NHibernate.SqlCommand
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Function SetFromClause ( _
	tableName As String, _
	alias As String _
) As SqlSelectBuilder
C#
public SqlSelectBuilder SetFromClause(
	string tableName,
	string alias
)
Visual C++
public:
SqlSelectBuilder^ SetFromClause(
	String^ tableName, 
	String^ alias
)
JavaScript
function setFromClause(tableName, alias);

Parameters

tableName
Type: System..::.String
The name of the Table to get the data from
alias
Type: System..::.String
The Alias to use for the table name.

Return Value

The SqlSelectBuilder

See Also