allowLiterals property
When false, the query string must not contain any literals and instead must bind all values.
For example, SELECT * FROM Kind WHERE a = 'string literal'
is not
allowed, while SELECT * FROM Kind WHERE a = @value
is.
Implementation
core.bool? allowLiterals;