0

我正在尝试附加到一个字段,但是当我尝试以下操作时,现有数据(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();

    }
4

1 回答 1

0

使用 String.Concat 而不是 + 运算符

于 2013-07-08T15:11:35.573 回答