奇怪的生成类来操作c#中的数据库

时间:2011-12-31 09:36:44

标签: c#

我有一个程序员创建的项目,我注意到下面的代码包含了操作数据库的所有代码。这是一个常规的.cs文件。我需要更新该模型,但我不知道tool我可以实现的目标。该类有10k +代码行,因此必须生成它。

#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.5448
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace MyProjWeb.Models
{
    using System.Data.Linq;
    using System.Data.Linq.Mapping;
    using System.Data;
    using System.Collections.Generic;
    using System.Reflection;
    using System.Linq;
    using System.Linq.Expressions;
    using System.ComponentModel;
    using System;


    [System.Data.Linq.Mapping.DatabaseAttribute(Name="sthdb")]
    public partial class MyDb : System.Data.Linq.DataContext
    {
      ...
    }
}

0 个答案:

没有答案