When implemented by a class, return a String representation of the value, suitable for embedding in an SQL statement

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

Syntax

Visual Basic (Declaration)
Function ObjectToSQLString ( _
	value As Object _
) As String
C#
string ObjectToSQLString(
	Object value
)
Visual C++
String^ ObjectToSQLString(
	Object^ value
)
JavaScript
function objectToSQLString(value);

Parameters

value
Type: System..::.Object
The object to convert to a string for the SQL statement.

Return Value

A string that containts a well formed SQL Statement.

See Also