龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > asp.net编程 >

MVC编程之ASP.NET MVC中对表记录通用的增删改操作方案

时间:2009-12-21 11:47来源:未知 作者:admin 点击:
分享到:
下面讲下在ASP.NET中MVC对数据库表记录进行通用的增删改方法,这篇文章须用到的知识: 1、了解反射技术 2、了解C#3.0中扩展方法,分布类,Linq to object,Linq to sql 3、了解ASP.NET MVC 在项目

下面讲下在ASP.NET中MVC对数据库表记录进行通用的增删改方法,这篇文章须用到的知识:

1、了解反射技术

2、了解C#3.0中扩展方法,分布类,Linq to object,Linq to sql

3、了解ASP.NET MVC

在项目中每添加一个表往往都要添加一套增删改代码,而且这些代码很多情况下都很相似,这里我们给出一个通用的解决方案供大家参考。

一、准备工作:

这里我们先要在数据库中添加两个表News和User如下图:然后拖到dbml中生成实体类。

这里我们先准备一个接口:ICommonTable

public  interface ICommonTable
    {
        
int id { getset; }
    }
然后让News和User实体都继承于此接口
 public partial class News : ICommonTable
    {

    }
    
public partial class User : ICommonTable
    {
       
    }

二、通用删除操作

分别添加NewsList.aspx和UserList.aspx两个view,添加方式参见ASP.NET MVC实践系列2-简单应用

在这两个View中加入删除链接:

<%= Html.ActionLink("删除", "Delete", new { key = item.id, partialName="News" })%>

<%= Html.ActionLink("删除", "Delete", new { key = item.id, partialName="User" })%>
然后添加一个Controller:

 public ActionResult Delete(string partialName, int? key)
        {
            RepositoryBase repositoryBase 
= new RepositoryBase(partialName);
            repositoryBase.Delete(key 
?? 0);
            
return RedirectToAction(partialName + "List");//返回到list
        } 接下来我们介绍一下RepositoryBase :
   public class RepositoryBase
    {
        
public Type EntityType { getprivate set; }
        
public RepositoryBase(string entityType)
        {
            Type type 
= GetBllTypeByName(entityType);

            EntityType 
= type;
        }
        
public ICommonTable CreateNew()
        {
            
return (ICommonTable)Activator.CreateInstance(EntityType);
        }
        
/// <summary>
        
/// 通过字符串获得其Type
        
/// </summary>
        
/// <param name="typeName"></param>
        
/// <returns></returns>
        private static Type GetBllTypeByName(string typeName)
        {
            Type type 
= null;
            var ass 
= AppDomain.CurrentDomain.GetAssemblies()
                 .Where(p 
=> p.FullName.Contains("CommonCEDemo"));
            
foreach (var a in ass)
            {
                type 
= a.GetTypes().Where(p => p.Name == typeName).FirstOrDefault();
                
if (type != null)
                    
break;
            }

            
if (type == null)
            {
                
throw new Exception("类型未定义:" + typeName);
            }
            
return type;
        }
        
public RepositoryBase(Type entityType)
        {
            EntityType 
= entityType;
        }
        
public ICommonTable Get(int id)
        {
            DBDataContext db 
= Context.GetContext();
            
return db.GetTable(EntityType).Cast<ICommonTable>().FirstOrDefault(p => p.id == id);
        }
        
public void Delete(int id)
        {
            ICommonTable bllTable 
= Get(id);
            Context.GetContext().GetTable(EntityType).DeleteOnSubmit(bllTable);
            Context.GetContext().SubmitChanges();
        }
       
    }

精彩图集

赞助商链接