summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
adbb859)
Signed-off-by: Torsten Werner <twerner@debian.org>
raise DBUpdateError(self.validation_message % \
(property, str(self)))
raise DBUpdateError(self.validation_message % \
(property, str(self)))
+ @classmethod
+ @session_wrapper
+ def get(cls, primary_key, session = None):
+ '''
+ This is a support function that allows getting an object by its primary
+ key.
+
+ Architecture.get(3[, session])
+
+ instead of the more verbose
+
+ session.query(Architecture).get(3)
+ '''
+ return session.query(cls).get(primary_key)
+
__all__.append('ORMObject')
################################################################################
__all__.append('ORMObject')
################################################################################