我的应用程序非常庞大,一年后我们发现客户“喜欢”在他们的名字或姓氏中插入空格......是否有任何简单的方法可以从这些字符串中删除空格(而不是在程序中搜索每一行) )或者我必须搜索我的整个代码并更改设置Osoba
的每一行?想做set { Osoba = value.Trim(): }
,但我还必须指定get
,这是我在模特的财产中无法做到的。
public class Event
{
[Key]
public int EventID { get; set; }
public DateTime AddTime { get; set; }
public DateTime Start { get; set; }
public DateTime End { get; set; }
public EventCreateType EventCreateType { get; set; }
public EventStatus Status { get; set; }
public string Osoba { get; set; }
(...)
}