Returns a comma-delimited list of named parameters for the properties of the specified DTO.
public static Sql DtoParamNames(Type type)
The parameter names are the same as those used by the Dto
methods of DbParameters
.
Returns a comma-delimited list of named parameters for the properties of the specified DTO.
public static Sql DtoParamNames(Type type, Func<string, string> name)
The parameter names are the same as those used by the Dto
methods of DbParameters
.
Returns a comma-delimited list of named parameters for the properties of the specified DTO.
public static Sql DtoParamNames(Type type, string name)
The parameter names are the same as those used by the Dto
methods of DbParameters
.
Returns a comma-delimited list of named parameters for the properties of the specified DTO.
public static Sql DtoParamNames<T>()
The parameter names are the same as those used by the Dto
methods of DbParameters
.
Returns a comma-delimited list of named parameters for the properties of the specified DTO.
public static Sql DtoParamNames<T>(Func<string, string> name)
The parameter names are the same as those used by the Dto
methods of DbParameters
.
Returns a comma-delimited list of named parameters for the properties of the specified DTO.
public static Sql DtoParamNames<T>(string name)
The parameter names are the same as those used by the Dto
methods of DbParameters
.