- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个模型 FollowUp
,其中包含与用户和项目关联的日期和描述:
class FollowUp(Base):
__tablename__ = 'followup'
id = Column(UUID(), primary_key=True)
project_id = Column(UUID(), ForeignKey("project.id"))
user_id = Column(UUID(), ForeignKey("user.id"))
followup_date = Column(DateTime())
description= Column(Unicode())
我想使用一个混合属性来返回一个子查询,该子查询计算在当前跟进之前发生的跟进的数量,该跟进与在项目中工作的特定用户相关联。
@hybrid_property
def previous_count(self):
return session.query(func.count(FollowUps) \
.filter(self.project_id == FollowUp.project_id ) \
.filter(self.user_id == FollowUp.user_id) \
.filter(self.followup_date > FollowUp.followup_date) \
.as_scalar()
我会在类似于以下的查询中使用它:
session.query(Project.title, User.name, FollowUp.previous_count) \
.filter(Project.id == @SOME_PROJECT_ID)
问题是 hybrid_property
没有使用返回的主查询:
SELECT
count(:param_2) AS count_1
FROM
followup
WHERE
AND followup.project_id = followup.project_id
AND followup.user_id = followup.user_id
AND followup.followup_date < followup.followup_date
我应该更改什么才能使其正常工作?我试图创建一个别名:
@hybrid_property
def previous_count(self):
alias_followup = aliased(FollowUp)
return session.query(func.count(alias_followup)) \
.join(alias_followup) \
.filter(self.project_id == alias_followup.project_id ) \
.filter(self.user_id == alias_followup.user_id) \
.filter(self.followup_date > alias_followup.followup_date) \
.as_scalar()
它给出了这个错误:
NoInspectionAvailable: No inspection system is available for object of type <type 'NoneType'>
我发现错误可能是由第一列为空引起的。其中隐藏了以下错误:
InvalidRequestError: Could not find a FROM clause to join from. Tried joining to <AliasedClass at 0x7fde5c0d9e50; Suivi>, but got: Can't find any foreign key relationships between 'followup' and 'previous_count'.
出于测试目的,我用另一列删除了 func.count
,并将连接子句修改为:
.join(alias_followup , self.id == FollowUp.id)
但它给了我另一个错误:
InvalidRequestError: Can't construct a join from <AliasedClass at 0x7f04ec7b6c90; FollowUp> to <AliasedClass at 0x7f04ec7b6c90; FollowUp>, they are the same entity
最佳答案
您使用别名是正确的,但没有正确使用它。另外,根据我对您的回答 other question ,混合属性需要两个部分。
@hybrid_property
def previous_count(self):
# the python property, queries the database and returns a count
cls = self.__class__
return session.query(func.count(cls.id)).filter(cls.project == self.project, cls.ts < self.ts).scalar()
@previous_count.expression
def previous_count(cls):
# the sql property, constructs a scalar subquery with an alias
other = aliased(cls)
return session.query(func.count(other.id)).filter(other.project_id == cls.project_id, other.ts < cls.ts).as_scalar()
下面是一个简单的工作示例:
from datetime import datetime
from sqlalchemy import create_engine, Column, Integer, DateTime, ForeignKey, func
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.ext.hybrid import hybrid_property
from sqlalchemy.orm import Session, relationship, aliased
engine = create_engine('sqlite:///', echo=True)
session = Session(bind=engine)
Base = declarative_base(bind=engine)
class Project(Base):
__tablename__ = 'project'
id = Column(Integer, primary_key=True)
class Followup(Base):
__tablename__ = 'followup'
id = Column(Integer, primary_key=True)
project_id = Column(Integer, ForeignKey(Project.id))
ts = Column(DateTime, nullable=False)
project = relationship(Project, backref='followups')
@hybrid_property
def previous_count(self):
# the python property, queries the database and returns a count
cls = self.__class__
return session.query(func.count(cls.id)).filter(cls.project == self.project, cls.ts < self.ts).scalar()
@previous_count.expression
def previous_count(cls):
# the sql property, constructs a scalar subquery with an alias
other = aliased(cls)
return session.query(func.count(other.id)).filter(other.project_id == cls.project_id, other.ts < cls.ts).as_scalar()
Base.metadata.create_all()
p1 = Project()
p2 = Project()
f1 = Followup(project=p1, ts=datetime(2014, 1, 1))
f2 = Followup(project=p1, ts=datetime(2014, 2, 1))
f3 = Followup(project=p1, ts=datetime(2014, 3, 1))
f4 = Followup(project=p1, ts=datetime(2014, 4, 1))
f5 = Followup(project=p2, ts=datetime(2014, 5, 1))
session.add_all((p1, p2))
session.commit()
print(session.query(Followup.id, Followup.previous_count).all())
创建了两个项目,一个有 4 个跟进,另一个有 1 个。然后查询 followups 以打印他们的 id 和以前的计数。生成以下查询:
SELECT followup.id AS followup_id, (SELECT count(followup_1.id) AS count_1
FROM followup AS followup_1
WHERE followup_1.project_id = followup.project_id AND followup_1.ts < followup.ts) AS anon_1
FROM followup
输出是:
[(1, 0), (2, 1), (3, 2), (4, 3), (5, 0)]
关于python - 使用混合属性计算 previous sibling 姐妹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25252805/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!