Syntax Element: binding
Description
Binds a piece of a sql construction step to the physical name of a design element.
Example
This keyword is highlighted
like this.
You can click on keywords and concepts in blue.
design { view Foo ("tblFoo") with X = 5; } construction { step sql { SELECT TOP $[Foo.X] * FROM $[Foo] } }
Notes
- Bindings address a design element or attribute by its logical name or logical path
- Bindings place a design element's physical name into a sql construction step
- Bindings place an attribute's value into a sql construction step
Related Use Cases
- Specifying design separately from construction
- Getting compiler feedback on your database design
- Eliminating duplication between client and database code
- Leveraging a version's proxy in a client
- Transition testing
Other Actions
documentation | all examples for this syntax element | all examples | use cases | concepts | keywords
design