摘要:
语法:CREATE [索引类型] INDEX 索引名称ON 表名(列名) 创建索引实例: 聚簇索引 create clustered index index_name on table_name (cloumn_name); 非聚簇索引 create nonclustered index index 阅读全文
摘要:
下面是测试代码: 1. 实体对象转换到Xml 1 2 3 4 5 6 7 8 9 public class Student { public string Name { set; get; } public int Age { set; get; } } Student stu1 = new Stu 阅读全文