声明:本文为www.cnc6.cn原创,转载时请注明出处,谢谢! 一.编写Person与City类,如下: class Person { public int CityID { set; get; } public string Name { set; get; } } class City { public int ID { set; get; } public string Name { set; get; } } 二.为以上两个类建立一些数据,存储于persons与cities中,如下:…
声明:本文为www.cnc6.cn原创,转载时请注明出处,谢谢! 一.编写Person与City类,如下: class Person { public int CityID { set; get; } public string Name { set; get; } } class City { public int ID { set; get; } public string Name { set; get; } } 二.为以上两个类建立一些数据,存储于persons与cities中,如下:…
来源 https://www.cnblogs.com/xinjian/archive/2010/11/17/1879959.html 准备一些测试数据,如下: use Test Create table Student( ID int identity(1,1) primary key, [Name] nvarchar(50) not null ) Create Table Book( ID int identity(1,1) primary key, [Name] nvarchar(50)no…