在elixir iex中,我想知道基本步骤。
1.如果我有模块以及如何导入它。
2.我想跑from l in '' where
去拿地图。
我尝试使用导入import Ecto.Query
,然后我运行了一些类似的东西from l in '' where
,我得到了这个
#Ecto.Query<from l in "", where: >
,如何获得数据结果?
在elixir iex中,我想知道基本步骤。
1.如果我有模块以及如何导入它。
2.我想跑from l in '' where
去拿地图。
我尝试使用导入import Ecto.Query
,然后我运行了一些类似的东西from l in '' where
,我得到了这个
#Ecto.Query<from l in "", where: >
,如何获得数据结果?
import Ecto.Query
alias Repo
Repo.one(from s in Struct)
也许也看看all