• 大小: 0.10M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-25
  • 语言: C#
  • 标签: 数据库  引擎  d  demo  t  

资源简介

使用T4引擎生成数据库表实体Demo

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient ;
using System.xml;
using System.CodeDom.Compiler;
using System.xml.Serialization;

namespace windows2008 {
    public partial class Form1 : Form {
        public Form1() {
            InitializeComponent();
 


        }

        private void Form1_Load(object sender EventArgs e) {
            string constring = “server=.;database=NorthWind;uid=sa;pwd=;“;
            SqlConnection conn = new SqlConnection(constring );
            conn.Open();
            DataTable dt = conn.GetSchema(“tables“);
            dataGridView1.DataSource = dt;
            conn.Close();
            string sql = “select * from [orderdetails]“;
            SqlCommand cmd = new SqlCommand (sql conn);
            SqlDataAdapter ad = new SqlDataAdapter( cmd );
            

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1862  2010-10-25 16:18  windows2008\windows2008\bin\Debug\Customers.cs

     文件       1093  2010-10-25 16:11  windows2008\windows2008\bin\Debug\model.tt

     文件      14848  2010-10-25 16:50  windows2008\windows2008\bin\Debug\windows2008.exe

     文件      81408  2010-10-25 16:50  windows2008\windows2008\bin\Debug\windows2008.pdb

     文件      14328  2010-10-25 16:17  windows2008\windows2008\bin\Debug\windows2008.vshost.exe

     文件       2842  2010-10-25 16:50  windows2008\windows2008\Form1.cs

     文件       5051  2010-10-25 16:00  windows2008\windows2008\Form1.Designer.cs

     文件       5814  2010-10-25 16:00  windows2008\windows2008\Form1.resx

     文件      86016  2010-08-27 08:25  windows2008\windows2008\Microsoft.VisualStudio.TextTemplating.dll

     文件         24  2010-10-25 16:11  windows2008\windows2008\model.cs

     文件       1093  2010-10-25 16:11  windows2008\windows2008\model.tt

     文件       3584  2010-10-25 15:38  windows2008\windows2008\obj\Debug\TempPE\model.cs.dll

     文件      10752  2010-10-25 13:26  windows2008\windows2008\obj\Debug\TempPE\test.cs.dll

     文件        608  2010-10-25 16:50  windows2008\windows2008\obj\Debug\windows2008.csproj.FileListAbsolute.txt

     文件        847  2010-10-25 16:17  windows2008\windows2008\obj\Debug\windows2008.csproj.GenerateResource.Cache

     文件      14848  2010-10-25 16:50  windows2008\windows2008\obj\Debug\windows2008.exe

     文件        180  2010-10-25 16:50  windows2008\windows2008\obj\Debug\windows2008.Form1.resources

     文件      81408  2010-10-25 16:50  windows2008\windows2008\obj\Debug\windows2008.pdb

     文件        180  2010-10-25 16:50  windows2008\windows2008\obj\Debug\windows2008.Properties.Resources.resources

     文件        477  2010-10-25 10:03  windows2008\windows2008\Program.cs

     文件       1354  2010-10-25 10:03  windows2008\windows2008\Properties\AssemblyInfo.cs

     文件       2783  2010-10-25 10:03  windows2008\windows2008\Properties\Resources.Designer.cs

     文件       5612  2010-10-25 10:03  windows2008\windows2008\Properties\Resources.resx

     文件       1068  2010-10-25 10:03  windows2008\windows2008\Properties\Settings.Designer.cs

     文件        249  2010-10-25 10:03  windows2008\windows2008\Properties\Settings.settings

     文件       6592  2010-10-25 16:14  windows2008\windows2008\TableHost.cs

     文件      11814  2010-10-25 13:26  windows2008\windows2008\test.cs

     文件       1838  2010-10-25 13:26  windows2008\windows2008\test.tt

     文件       4341  2010-10-25 16:50  windows2008\windows2008\windows2008.csproj

     文件        168  2010-10-25 12:51  windows2008\windows2008\windows2008.csproj.user

............此处省略14个文件信息

评论

共有 条评论