Returns substring of this SqlString starting with the specified text. If the text is not found, returns an empty, not-null SqlString.

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

Syntax

C#
public SqlString SubstringStartingWithLast(
	string text
)
Visual Basic
Public Function SubstringStartingWithLast ( _
	text As String _
) As SqlString
Visual C++
public:
SqlString^ SubstringStartingWithLast(
	String^ text
)

Parameters

text
Type: System..::..String

[Missing <param name="text"/> documentation for "M:NHibernate.SqlCommand.SqlString.SubstringStartingWithLast(System.String)"]

Return Value

[Missing <returns> documentation for "M:NHibernate.SqlCommand.SqlString.SubstringStartingWithLast(System.String)"]

Remarks

The method performs case-insensitive comparison, so the text passed should be in lower case.

See Also