フィールドに追加しようとしていますが、次のことを試みると、既存のデータ (Update.Comments) が追加されるのではなく、followUpComments で上書きされます。
どうすれば追加できますか?
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();
}