public static string AsStringNullable(this object obj) { return(SimpleConvertLambdas.AsTypeNullable(obj, o => o.AsString())); }
public static bool?AsBoolNulleable(this object obj) { return(SimpleConvertLambdas.AsTypeNullable(obj, o => o.AsBool())); }
public static sbyte?AsSByteNullable(this object obj) { return(SimpleConvertLambdas.AsTypeNullable(obj, o => o.AsSByte())); }
public static decimal?AsDecimalNullable(this object obj) { return(SimpleConvertLambdas.AsTypeNullable(obj, o => o.AsDecimal())); }
public static short?AsShortNullable(this object obj) { return(SimpleConvertLambdas.AsTypeNullable(obj, o => o.AsShort())); }