|
SQLSearchFilterGenerateConditional Method
|
Generates the conditional statement to be used in the WHERE clause of the SQL statement.
Namespace: GSF.Data.ModelAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic string GenerateConditional(
List<Object> parameters
)
Public Function GenerateConditional (
parameters As List(Of Object)
) As String
public:
String^ GenerateConditional(
List<Object^>^ parameters
)
member GenerateConditional :
parameters : List<Object> -> string
function GenerateConditional(parameters);
View SourceParameters
- parameters ListObject
- A list of the parameters to be substituted into the full query.
Return Value
StringThe conditional statement with format string syntax for parameter substitution."
See Also