文章分类 -  Linq

摘要:创建Persons表和Cards表if exists(select * form sysobjects where name='Persons') drop table Persons go Create table Persons(Id int primary key identity(1,1),Name nvarchar(50),Sex bit,Age smallint); go if exists(select * form sysobjects where name='Cards') drop table Cards go create table Ca 阅读全文
posted @ 2013-11-11 13:29 Lukas89 阅读(241) 评论(0) 推荐(0)