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)

Syntax

Visual Basic (Declaration)
Public Function SubstringStartingWithLast ( _
	text As String _
) As SqlString
C#
public SqlString SubstringStartingWithLast(
	string text
)
Visual C++
public:
SqlString^ SubstringStartingWithLast(
	String^ text
)
JavaScript
function substringStartingWithLast(text);

Parameters

text
Type: System..::.String

Remarks

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

See Also