假设我有一个非常简单的带有外键的数据库(为简单起见:一个带有自引用的表;上下文 - 对金融工具进行建模):
Instrument
ticker String
name String
denomination InstrumentId -- FK !!
domicile Country
source DataSource
UniqueT ticker
deriving Eq Show
然后我可以通过执行获取所有行:
getAll :: (MonadIO m, MonadLogger m) => SqlReadT m [Entity Instrument]
getAll = select $ from $ return
我注意到我可以使用自动生成的函数从结果中提取特定字段,例如
getTicker :: Entity Instrument -> String
getTicker = instrumentTicker . entityVal
但是,当我尝试引用通过外键引用的值时,我得到:
getDenomination :: Entity Instrument -> Key Instrument
getDenomination = instrumentDenomination . entityVal
我的问题:如何引用与收到的“关键工具”相对应的剩余值,例如如何获取引用记录的“名称”字段?
编辑:
我试过写一个子查询,但到目前为止还不好。我尝试的是:
getInstrumentByKey :: (MonadIO m, MonadLogger m) => Key Instrument -> SqlBackendT m (Entity Instrument)
getInstrumentByKey key =
select $ from $ \i ->
where_ (i ^. InstrumentId ==. key) -- type error, InstrumentKey is of type "SqlExpr (Value (Key Instrument))", while key is "Key Instrument"
return i
如何在我的子查询中正确使用“Key Instrument”参数?