Returns a comma-delimited list of named parameters for the properties of the specified DTO whose names match the specified filter.
public static Sql DtoParamNamesWhere(Type type, Func<string, bool> filter)
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 whose names match the specified filter.
public static Sql DtoParamNamesWhere(Type type, Func<string, string> name,
Func<string, bool> filter)
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 whose names match the specified filter.
public static Sql DtoParamNamesWhere(Type type, string name, Func<string, bool> filter)
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 whose names match the specified filter.
public static Sql DtoParamNamesWhere<T>(Func<string, bool> filter)
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 whose names match the specified filter.
public static Sql DtoParamNamesWhere<T>(Func<string, string> name, Func<string, bool> filter)
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 whose names match the specified filter.
public static Sql DtoParamNamesWhere<T>(string name, Func<string, bool> filter)
The parameter names are the same as those used by the Dto
methods of DbParameters
.