We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Connection
Database
ExecutionResult
QueryResult
ORM Core
Entity
Column
PrimaryKey
Relation
Model
serde_json::Value
Select from Table
SelectStatment
impl Stream<Item = Result<_, _>>
Insert into Table
Update from Table
ActiveModel
save
Delete from Table
Utility (sea-orm-cli #24)
Discovery
generate
Test suite
bakery
The text was updated successfully, but these errors were encountered:
Added axum graphql example (#587)
7ba6144
* added example for axum + graphql * clean up * removed macos file * Pr/587 (#1) * Migrate on startup * Update CI * Add .gitignore * Add README Co-authored-by: Billy Chan <[email protected]> Co-authored-by: Billy Chan <[email protected]>
select_only().column()
Merge pull request #1 from billy1624/pr/725
df7de64
Merge pull request #1 from billy1624/pr/1041
dbc0c72
Pr/1041
No branches or pull requests
Connection
Database
: abstract interface of a databaseConnection
: a live connection able to execute SQL statementsExecutionResult
: execution result of non select queryQueryResult
: execution result of select query #83ORM Core
Entity
: encapsulates all the necessary specification of the corresponding database tableColumn
: column namePrimaryKey
: primary key nameRelation
: definition of relation between tablesModel
: struct to store the data of a database rowQueryResult
intoserde_json::Value
#4)Entity
file as Rust code (Entity Generator #11)Select from Table
SelectStatment
and return one or many modelsi.e. into
impl Stream<Item = Result<_, _>>
Insert into Table
Update from Table
ActiveModel
: wrapModel
and indicates which fields are modified, and only update respective columnssave
semantics: insert if model is new, otherwise updateDelete from Table
Utility (sea-orm-cli #24)
Discovery
:generate
command to generate entities from existing databaseTest suite
bakery
: a database schema for demonstration (Bakery Schema Design #32)The text was updated successfully, but these errors were encountered: