diff --git a/docs/pages/docs/Advanced Features/builder_options.md b/docs/pages/docs/Advanced Features/builder_options.md index 50ff5028..7b36c312 100644 --- a/docs/pages/docs/Advanced Features/builder_options.md +++ b/docs/pages/docs/Advanced Features/builder_options.md @@ -72,6 +72,7 @@ At the moment, moor supports these options: columns back to null (by using `Value(null)`). Passing `null` was ignored before, making it impossible to set columns to `null`. * `named_parameters`: Generates named parameters for named variables in SQL queries. +* `named_parameters_always_required`: All named parameters (generated if `named_parameters` option is `true`) will be required in Dart. * `new_sql_code_generation`: Generates SQL statements from the parsed AST instead of replacing substrings. This will also remove unecessary whitespace and comments. If enabling this option breaks your queries, please file an issue! @@ -209,4 +210,4 @@ and use the non-shared generator instead. Finally, we need to the build system to run moor first, and all the other builders otherwise. This is why we split the builders up into multiple targets. The first target will only run moor, the second -target has a dependency on the first one and will run all the other builders. \ No newline at end of file +target has a dependency on the first one and will run all the other builders.