Sets the text that should appear after the FROM

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

Syntax

C#
public SqlSelectBuilder SetFromClause(
	string tableName,
	string alias
)
Visual Basic
Public Function SetFromClause ( _
	tableName As String, _
	alias As String _
) As SqlSelectBuilder
Visual C++
public:
SqlSelectBuilder^ SetFromClause(
	String^ tableName, 
	String^ 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