MCPcopy Create free account
hub / github.com/SeaQL/sea-orm / all_about_select_json

Function all_about_select_json

examples/basic/src/select.rs:227–239  ·  view source on GitHub ↗
(db: &DbConn)

Source from the content-addressed store, hash-verified

225}
226
227async fn all_about_select_json(db: &DbConn) -> Result<(), DbErr> {
228 find_all_json(db).await?;
229
230 println!("===== =====\n");
231
232 find_together_json(db).await?;
233
234 println!("===== =====\n");
235
236 count_fruits_by_cake_json(db).await?;
237
238 Ok(())
239}
240
241async fn find_all_json(db: &DbConn) -> Result<(), DbErr> {
242 print!("find all cakes: ");

Callers 1

all_about_selectFunction · 0.85

Calls 3

find_all_jsonFunction · 0.85
find_together_jsonFunction · 0.85

Tested by

no test coverage detected