asp.net MVC Tutorial: Database table additions and deletions

Source: Internet
Author: User

Preliminary knowledge:

1. Understand Reflection technology

2, understand c#3.0 extension methods, distribution classes, LINQ to Object,linq to SQL

3. Understanding ASP.net MVC

Each add a table in the project will often add a set of additions and deletions to the code, and the code is very similar in many cases, here we give a general solution for your reference.

First, the preparatory work:

Here we first add two table news and user to the database as follows: Then drag into the dbml to generate the entity classes.

Here we first prepare an interface: icommontable

public interface Icommontable
{
int ID {get; set;}
}

Then let both the news and the user entities inherit from this interface

public partial class News:icommontable
{

}
public partial class User:icommontable
{

}



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.