Adds existing SqlStrings to this SqlStringBuilder
Namespace:
NHibernate.SqlCommandAssembly: NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function Add ( _ sqlStrings As SqlString(), _ prefix As String, _ op As String, _ postfix As String, _ wrapStatement As Boolean _ ) As SqlStringBuilder |
C# |
---|
public SqlStringBuilder Add( SqlString[] sqlStrings, string prefix, string op, string postfix, bool wrapStatement ) |
Visual C++ |
---|
public: SqlStringBuilder^ Add( array<SqlString^>^ sqlStrings, String^ prefix, String^ op, String^ postfix, bool wrapStatement ) |
JavaScript |
---|
function add(sqlStrings, prefix, op, postfix, wrapStatement); |
Parameters
- sqlStrings
- Type: array<
NHibernate.SqlCommand..::.SqlString
>[]()[]
The SqlStrings to combine.
- prefix
- Type: System..::.String
String to put at the beginning of the combined SqlStrings.
- op
- Type: System..::.String
How these SqlStrings should be junctioned "AND" or "OR"
- postfix
- Type: System..::.String
String to put at the end of the combined SqlStrings.
- wrapStatement
- Type: System..::.Boolean
Wrap each SqlStrings with "(" and ")"