Flexberry ORM 8.0.0-beta01
Интерфейс ICSSoft.STORMNET.IConverterToQueryValueString

The interface allows you to define a class to convert values of different types to a string for use in a SQL query. Подробнее...

Открытые члены

bool IsSupported (Type type)
 Checks if the type is supported. Подробнее...
 
string ConvertToQueryValueString (object value)
 Converts a value to a string for use in an SQL query. Подробнее...
 

Подробное описание

The interface allows you to define a class to convert values of different types to a string for use in a SQL query.

Методы

◆ ConvertToQueryValueString()

string ICSSoft.STORMNET.IConverterToQueryValueString.ConvertToQueryValueString ( object  value)

Converts a value to a string for use in an SQL query.

Аргументы
valueThe convertible value.
Возвращает
A string suitable for use in a SQL query.

◆ IsSupported()

bool ICSSoft.STORMNET.IConverterToQueryValueString.IsSupported ( Type  type)

Checks if the type is supported.

Аргументы
typeType to be checked.
Возвращает
true
if the type is supported, otherwise.
false
.