0
我試圖將我的思想從理性數據庫轉移到領域,我有一個小問題。實現插入簡單的關係模型(嵌套對象)
我有2個數據模型:
Station.schema = {
name: 'Station', primaryKey: 'id', properties:{ id: 'int', // primary key stationName : {type: 'string'}, stationType : {type:'StationType'} }
}
StationType.schema = {
name: 'StationType', primaryKey: 'id', properties:{ id: 'int', // primary key typeName : {type: 'string'}, }
}
我試圖插入對象「station」的新記錄,該記錄具有名爲「stationType」的對象屬性。 stationType對象預填充了固定值。
每當我執行插入的對象「站」時,它會嘗試插入已存在的「stationType」屬性的值。
如何防止插入對象屬性?我只希望「stationType」屬性指向「StationType」模型中的記錄。
謝謝
尤瓦
感謝。 我意識到'真實'的論點,但它不覺得這是我應該用在這種情況下。 你能解釋更多關於第二種選擇嗎?你是否提到類型更新? – Yuval
希望我的編輯幫助。 – EpicPandaForce
清除,謝謝! – Yuval