在asp.net mvc现有表中增加新的字段
这里我们以Circular表中添加一个int类型的AttachmentId为例
1. 找到dbml文件,使用文本工具打开它。找到Circular对应的位置,在其type下面添加下面的语句。
<Column Name="AttachmentId" Type="System.Int32" DbType="Int" CanBeNull="true" />
2. 在dbml的子文件,cs类型文件中,找到Circular类。
3. 添加一个变量。
private System.Nullable<int> _AttachmentId;
4. 添加2个函数。
partial void OnAttachmentIdChanging(System.Nullable<int> value);
partial void OnAttachmentIdChanged();
5. 添加属性器。
[Column(Storage = "_AttachmentId", DbType = "Int")]
public System.Nullable<int> AttachmentId
{
get
{
return this._AttachmentId;
}
set
{
if ((this._AttachmentId != value))
{
this.OnAttachmentIdChanging(value);
this.SendPropertyChanging();
this._AttachmentId = value;
this.SendPropertyChanged("AttachmentId");
this.OnAttachmentIdChanged();
}
}
}
摘自:架构美了,生活也就美了
补充:Web开发 , ASP.Net ,