suppose I have fooIds :: [Key Foo]. How would I get foos :: [Foo]?
I tried
do
foos <- map get fooIds
but it gives me
No instance for (MonadBaseControl IO m0)
arising from a use of `get'
I assume because I need to use runDB. But I'm not quite sure how to work it in.