0
我想附加到字段,但是當我嘗試以下時,現有數據(Update.Comments)會被followUpComments覆蓋而不是附加到它。EF 4 - 追加到更新的字段
如何追加?
using (var context = new DBContext()){
var Update = (from p in context.Prospects where p.id == recordIdToUpdate select p).Single();
Update.Comments = Update.Comments + "\n\n" +followUpComments;
context.SaveChanges();
}
您是否嘗試過使用String.Concat代替+ –
沒有,我會盡力的。感謝 – Slinky
James,使用String.Concat()修復了它。不知道爲什麼「+」運算符不起作用。發佈作爲解決方案,我會給你信貸和感謝 – Slinky