如何根据模型上的虚拟属性返回的值搜索整个模型?
How do I search an entire model based on the value returned by a virtual attribute on that model?
我有一个模型 Property
,我有一个这样定义的虚拟属性:
def uid_type
if mls? && mls.to_i != 0
"MLS"
elsif property_identifier? && property_identifier.to_i != 0
"PID"
else
"ID"
end
end
这样,如果我有一个 属性 p
,当我查询该虚拟属性时,这就是我看到的:
> p.uid_type
=> "MLS"
基本上,我想做的是在我的模型上创建一个范围,以 return 所有具有 uid_type == 'MLS'
.
的属性
我该怎么做?
编辑 1
如果我试试这个:
Property.where('properties.uid_type == "MLS"').count
(4.6ms) SELECT COUNT(*) FROM "properties" WHERE (properties.uid_type == "MLS")
ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR: column properties.uid_type does not exist
LINE 1: SELECT COUNT(*) FROM "properties" WHERE (properties.uid_typ...
您必须编写自己的范围,ActiveRecord 对自定义方法帮助不大。
scope :with_mls_uid_type, -> { where.not(mls: [nil, '']) }
这将转换为:
SELECT "properties".*
FROM "properties"
WHERE ("properties"."mls" IS NOT NULL)
AND ("properties"."mls" != '')
如果您的标签正确并且您仍在使用 Rails 3.2,那么您将没有 .not
,您将不得不这样做:
where("mls IS NOT NULL AND mls != ''")
我有一个模型 Property
,我有一个这样定义的虚拟属性:
def uid_type
if mls? && mls.to_i != 0
"MLS"
elsif property_identifier? && property_identifier.to_i != 0
"PID"
else
"ID"
end
end
这样,如果我有一个 属性 p
,当我查询该虚拟属性时,这就是我看到的:
> p.uid_type
=> "MLS"
基本上,我想做的是在我的模型上创建一个范围,以 return 所有具有 uid_type == 'MLS'
.
我该怎么做?
编辑 1
如果我试试这个:
Property.where('properties.uid_type == "MLS"').count
(4.6ms) SELECT COUNT(*) FROM "properties" WHERE (properties.uid_type == "MLS")
ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR: column properties.uid_type does not exist
LINE 1: SELECT COUNT(*) FROM "properties" WHERE (properties.uid_typ...
您必须编写自己的范围,ActiveRecord 对自定义方法帮助不大。
scope :with_mls_uid_type, -> { where.not(mls: [nil, '']) }
这将转换为:
SELECT "properties".*
FROM "properties"
WHERE ("properties"."mls" IS NOT NULL)
AND ("properties"."mls" != '')
如果您的标签正确并且您仍在使用 Rails 3.2,那么您将没有 .not
,您将不得不这样做:
where("mls IS NOT NULL AND mls != ''")