Entity Framework エンティティに基づいて、そのうちの 1 つの部分クラスを作成しました。ContentValue
問題は、が返される前にコードを追加したいということです。しかし、それはうまくいきません -
[MetadataType(typeof(ToolTip_Meta))]
public partial class Tooltip
{
..some methods etc
}
public class ToolTip_Meta
{
[Required]
public string ContentValue
{
get
{
if (!string.IsNullOrEmpty(this.ContentValue))
return this.ContentValue.Replace("\n", "<br/>").Replace("\r", "").Replace("\r", "").Replace("'", "\\'").Replace("\"", """);
return this.ContentValue;
}
set { ContentValue = value; }
}
}
ContentValue
プロジェクトのどこかでプロパティ値を取得したい場合、変更されていない文字列を取得しますが、get
アクセサー内には入りません。それを修正する方法?