Add new fields to the existing asp.net mvc table

Source: Internet
Author: User

 

Here we use adding an int type AttachmentId in the Circular table as an example.

1. Find the dbml file and use a text tool to open it. Locate the corresponding location of Circular and add the following statement under its type.

<Column Name = "AttachmentId" Type = "System. Int32" DbType = "Int" CanBeNull = "true"/>

 

 

2. Find the Circular class in the dbml subfile and cs type file.

 

 

3. Add a variable.

Private System. Nullable <int> _ AttachmentId;

 

 

4. Add two functions.

Partial void OnAttachmentIdChanging (System. Nullable <int> value );

Partial void OnAttachmentIdChanged ();

 

 

5. Add an attribute.

[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 ();

}

}

}

From: Beautiful architecture, beautiful life

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.