View Source MongoAgile.Examples.Schema.SchemaController (mongo_agile v0.8.1-rc)
SchemaController Example of controller have some example of using before and after methods.
Link to this section Summary
Functions
Build the query 'create_query'
Execute the query 'create_query'
Build the query 'get_query'
Execute the query 'get_query'
Build the query 'remove_query'
Execute the query 'remove_query'
Build the query 'replace_query'
Execute the query 'replace_query'
Link to this section Functions
Build the query 'create_query'
Execute the query 'create_query'
pipeline-of-execution
Pipeline of execution:
create_before(args) # Optional |> create_query() |> exe_query() |> create_after() # Optional
Build the query 'get_query'
Execute the query 'get_query'
pipeline-of-execution
Pipeline of execution:
get_before(args) # Optional |> get_query() |> exe_query() |> get_after() # Optional
Build the query 'remove_query'
Execute the query 'remove_query'
pipeline-of-execution
Pipeline of execution:
remove_before(args) # Optional |> remove_query() |> exe_query() |> remove_after() # Optional
Build the query 'replace_query'
Execute the query 'replace_query'
pipeline-of-execution
Pipeline of execution:
replace_before(args) # Optional |> replace_query() |> exe_query() |> replace_after() # Optional