Giter VIP home page Giter VIP logo

Comments (5)

tomchristie avatar tomchristie commented on August 20, 2024 1

Instead of...

model = ModelClass()
model.string_field = 'Test' # db.StringField()
model.int_field = 5 # db.IntField()
model.bool_field = False # db.BooleanField()
await model.save()

Use this...

instance = await ModelClass.objects.create(
    string_field=...,
    int_field=...,
    bool_field=...
)

If you really need to build it up gradually you can use this pattern...

kwargs = {}
kwargs['string_field'] = 'Test'
kwargs['int_field'] = 5
kwargs['bool_field'] = False
instance = await ModelClass.objects.create(**kwargs)

Having partially populated model instances, or modifiying model instance properties directly is a problematic pattern and means that model instances don't do a good job of encapsulating valid state changes.

from orm.

HarrySky avatar HarrySky commented on August 20, 2024

Did not test if something like this will work:

class SaveableModel(Model):
    async def save(self):
        await self.objects.create(**self.fields)

from orm.

HarrySky avatar HarrySky commented on August 20, 2024

It does not work, gives typesystem.base.ValidationError: {'id': 'Must be a number.', ...

All the fields such as Integer and String are not represented as int and str. Maybe I am doing something wrong, but when I used Flask with Datastore from Flask-Security I could just use this code and it would work:

model = ModelClass()
model.string_field = 'Test' # db.StringField()
model.int_field = 5 # db.IntField()
model.bool_field = False # db.BooleanField()
model.save()

from orm.

tomchristie avatar tomchristie commented on August 20, 2024

Related: https://www.dabapps.com/blog/django-models-and-encapsulation/

from orm.

HarrySky avatar HarrySky commented on August 20, 2024

Thanks, did not know that this is problematic pattern :)

from orm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.