Class Converter
Helper functions for common converter scenarios
Inheritance
System.Object
Converter
Namespace: EPiServer.DataAbstraction.Internal
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class Converter : Object
Constructors
Converter()
Declaration
public Converter()
Methods
ToIntZero(Object)
Returns 0 if parameter is anything else than of type System.
Declaration
public static int ToIntZero(object val)
Parameters
Type | Name | Description |
---|---|---|
System. |
val |
Returns
Type | Description |
---|---|
System. |
ToStringEmpty(Object)
Returns String.Empty if parameter is anything else than of type System.
Declaration
public static string ToStringEmpty(object val)
Parameters
Type | Name | Description |
---|---|---|
System. |
val |
Returns
Type | Description |
---|---|
System. |
ToStringNull(Object)
Tries to cast to a string.
Declaration
public static string ToStringNull(object val)
Parameters
Type | Name | Description |
---|---|---|
System. |
val | The object to cast. |
Returns
Type | Description |
---|---|
System. |
|
ToSystemNull(Object)
Converts from System.DBNull
to null
.
Declaration
public static object ToSystemNull(object val)
Parameters
Type | Name | Description |
---|---|---|
System. |
val | The object to convert. |
Returns
Type | Description |
---|---|
System. |
|