ecto

    2熱度

    2回答

    我只是想執行一個簡單的兩列或多列連接的Ecto查詢。 我認爲下面靈藥僞早已代碼顯示了我嘗試做: customers = Customer.undeleted( from c in Customer, select: %{id: c.id, name: c.name <> " – " <> c.street}, order_by: c.name ) |> Repo.al

    0熱度

    2回答

    我有一個後端顯示帖子列表的博客。每個帖子都有一個publish_on值,這是一個日期時間 - 如果當前時間晚於publish_on,則帖子處於活動狀態(帖子有一個名爲active的布爾虛擬字段)。 當我查詢回購的帖子列表時,如果當前時間在publish_on之後,我想查看列表,並將帖子的active設置爲true。 什麼是最「Elixirian」的方式來做到這一點? (此外,什麼是藥劑界的 「Py

    2熱度

    1回答

    這是一個基本問題,我無法在網上找到詳細信息。 我有一個叫做「無線電」模式,我希望顯示的最後一次無線電添加到我的主頁 - templates/page/index.html.eex 我到目前爲止有: radio.ex defmodule Radios.Radio do use Radios.Web, :model import Ecto.Query schema "r

    0熱度

    1回答

    簡單的要求: a1 = where(MyModel, [x], is_nil(x.some_foreign_id)) |> Repo.one() 例外: ** (exit) an exception was raised: ** (Ecto.MultipleResultsError) expected at most one result but got 6 in q

    0熱度

    1回答

    我有一個phoenix/phx v1.3項目,我一直在努力嘗試使用iex會話創建用戶。據我可以告訴我編寫的代碼應該工作,因爲應用程序編譯。 我跑下面的發生器爲用戶帳戶設置schema。 mix phx.gen.json Accounts User users email:string encrypted_password:string username:string 我再通過關於如何設置模式,

    1熱度

    1回答

    我有以下模式。 defmodule Message do use Ecto.Schema schema "messages" do belongs_to :user, FPL.Club, foreign_key: :user_to_id belongs_to :user, FPL.Club, foreign_key: :user_from_id

    1熱度

    1回答

    我有一些現有的基於Java的網絡應用程序,並且我希望它能夠製作Phoenix版本的那些應用程序。 我現有的一些存儲過程很多。我如何使用遷移或種子exs來創建這些存儲過程?任何線索? 謝謝

    0熱度

    1回答

    我有一個現有的數據庫,並有一個唯一索引在表 ALTER TABLE ONLY users ADD CONSTRAINT unique_document_id UNIQUE (document_id); 我沒有在任何外生遷移和我想使用變更集插入新記錄。下面是從模型和代碼的代碼中插入 defmodule User do use Ecto.Schema schema "user

    1熱度

    1回答

    我有兩個表,users和roles。我想要做的是在它們之間建立簡單的關聯,即users可以有多個roles。 在數據庫應該看起來像: 角色: id | name ----------- 1 | ADMIN 2 | USER 用戶 id | email | username | roles -------------------------------------

    0熱度

    2回答

    我有這樣的代碼: if Map.has_key?(dbShop, "id") && Map.has_key?(dbProduct, "id") do case Api.Repo.insertProductShop(conn, dbShop.id, dbProduct.id) do {:ok, productShop} -> {:ok, productShop}