我有一个名为ip address的属性,我希望在保存到数据库之前修剪它的值。我的模型类是: -
[MetadataType(typeof(Server_Validation))]
public partial class Server
{
//code goes here..
和metadatatype类是: -
public class Server_Validation
{
private string ip { get; set; }
[StringLength(20)]
public string IP { get {
return ip.Trim();
}
set {
ip = value;
} }
但目前不会修剪IP地址。有人可以建议吗?