DataStringFormatSQL(String, DataRow) 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,
DataRow row
)
Public Shared Function StringFormatSQL (
format As String,
row As DataRow
) As String
- format String
- Format string (for example: "Name = {Name} and Age = {Age}").
- row DataRow
- Data row.
StringString with the value result (for example: "Name = 'John' and Age = 45).