VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • C#教程之C# 动态创建数据库三(MySQL)(2)

四、添加类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[Table("Student")]
    public class Student
    {
        public Student()
        {
 
        }
        [Key]
        public int StudentID { getset; }
        public string StudentName { getset; }
        public DateTime AddTime { getset; }
 
    }
 
    [Table("Standard")]
    public class Standard
    {
        public Standard()
        {
 
        }
        public int StandardId { getset; }
        public string StandardName { getset; }
        public DateTime AddTime { getset; }
 
    }

相关教程