我想用給UPSERT在數據庫記錄下面的命令未定義的方法`find_or_create」
Profile.find_or_create(fname: contact.FirstName, lname: contact.LastName,
company: account.Name, title: contact.Title, user_id: contact.CreatedById,
account_id: account.Id, contact_id: contact.Id, type: "contact" )
其中Profile
是activerecord model
但
undefined method find_or_create for Profile class
Profile.public_methods
沒有我得到以下錯誤顯示find_or_create
方法,但Activerecord Api
定義了上述方法。
什麼可能是錯誤的?
您使用的是軌道4版的方法。 – RGB