Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gettext (0.22 sec)

  1. docs/en/docs/release-notes.md

        * The new support for ORM mode fixes issues/adds features related to ORMs with lazy-loading, hybrid properties, dynamic/getters (using `@property` decorators) and several other use cases.
        * This applies to ORMs like SQLAlchemy, Peewee, Tortoise ORM, GINO ORM and virtually any other.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
  2. docs/en/docs/how-to/sql-databases-peewee.md

    And if that's the case, just return a `list` with it.
    
    And then we use it in the Pydantic *models* / schemas that use `orm_mode = True`, with the configuration variable `getter_dict = PeeweeGetterDict`.
    
    !!! tip
        We only need to create one `PeeweeGetterDict` class, and we can use it in all the Pydantic *models* / schemas.
    
    ## CRUD utils
    
    Now let's see the file `sql_app/crud.py`.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Jan 16 13:23:25 GMT 2024
    - 23.6K bytes
    - Viewed (1)
Back to top