DataStringFormatSQL(String, String, Object) Method
Converts a format string with field names to a string with SQL values.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static string StringFormatSQL(
string format,
string field,
Object value
)
Public Shared Function StringFormatSQL (
format As String,
field As String,
value As Object
) As String
- format String
- Format string (for example: "Name = {Name} and Age = {Age}").
- field String
- Name of the field.
- value Object
- Value of the field to be established.
StringString with the value result (for example: "Name = 'John' and Age = 45).