本文整理匯總了Python中dNG.data.data_linker.DataLinker._apply_sub_entries_order_by_condition方法的典型用法代碼示例。如果您正苦於以下問題:Python DataLinker._apply_sub_entries_order_by_condition方法的具體用法?Python DataLinker._apply_sub_entries_order_by_condition怎麽用?Python DataLinker._apply_sub_entries_order_by_condition使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dNG.data.data_linker.DataLinker
的用法示例。
在下文中一共展示了DataLinker._apply_sub_entries_order_by_condition方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _apply_sub_entries_order_by_condition
# 需要導入模塊: from dNG.data.data_linker import DataLinker [as 別名]
# 或者: from dNG.data.data_linker.DataLinker import _apply_sub_entries_order_by_condition [as 別名]
def _apply_sub_entries_order_by_condition(self, db_query, context = None):
#
"""
Returns the modified SQLAlchemy database query with the "order by" condition
applied.
:param context: Sub entries request context
:return: (object) SQLAlchemy database query
:since: v0.1.00
"""
if (self.log_handler is not None): self.log_handler.debug("#echo(__FILEPATH__)# -{0!r}._apply_sub_entries_order_by_condition()- (#echo(__LINE__)#)", self, context = "pas_datalinker")
_return = db_query
if (context == "DiscussTopic"):
#
sort_definition = self._get_db_sort_definition(context)
if (sort_definition is not None): _return = sort_definition.apply(_DbDiscussTopic, db_query)
#
else: _return = DataLinker._apply_sub_entries_order_by_condition(self, db_query, context)
return _return