如何在c#类's属性中插入换行符(将其值传递给sql server)
本文关键字:换行符 值传 server sql 插入 属性 | 更新日期: 2023-09-27 18:15:44
我在我的表作为History
需要存储如下数据列:
28/05/2013: Service_Id = 1, Mapping_Id = 3, Comment = abcxyz
29/05/2013: Service_Id = 1, Mapping_Id = 3, Comment = changeddata
现在我不知道如何使数据看起来像这样,这是在c#代码中的换行,使它存储在sql server,当我检索数据,它应该看起来像上面只有
Try as
// Sample for the Environment.NewLine property
using System;
class Sample
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine("NewLine: {0} first line{0} second line{0} third line",
Environment.NewLine);
}
}
/*
This example produces the following results:
NewLine:
first line
second line
third line
*/
参考Stackoverflow参考
您可以直接使用Environment.NewLine
连接,或者使用StringBuilder
附加行。
它不一定看起来像SQL中的,比如,Management Studio,因为字段不是那样显示的,但是任何内容显示在尊重换行符的地方,那么它将被格式化。