I am creating a web application using flask and sqlalchemy.
I am confused about putting db_session related statements like db_session.add(). There are two approaches I am thinking of. One is to create an add() function in model itself and encapsulate sqlalchemy part completely. Another approach is to call those functions from controller. While looking at many examples of models, I can see that mostly second approach is used. Which is better/correct way of doing this and why?
e.g.1) In model itself
class Events(db.Model):
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.String(128))
.
.
.
def add(self):
db.session.add(self)
db.session.commit()
def delete(self):
db.session.delete(self)
db.session.commit()
class EventsAPI(MethodView):
def get(self, event_id):
e = Events()
e.title = 'testing'
e.add()
.
.
.
2) In Controller
class Events(db.Model):
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.String(128))
.
.
.
class EventsAPI(MethodView):
def get(self, event_id):
e = Events()
e.title = 'testing'
db.session.add(e)
db.session.commit()
.
.
.
