摘要:
第一章 Welcome to the Silverlight and WPF World学习目标:了解Silverlight和WPF基础。设计和程序员之间角色的不同之处了解Expression Studio 4的相关产品了解如何在设计过程中与Visual Studio结合使用Introducing Silverlight and WPFThe Designer/Developer WorkflowExpression Studio: The Designer’s WorldBlend通过拖拽帮助快速使用WPF技术,例如样式、数据绑定等,生成XAML(用于开发阶段界面实现和业务逻辑交互)其中包含 阅读全文
摘要:
(1)启用当前数据库的 SQL Server Service Brokeralter database 数据库名称 set enable_broker若命令执行成功的话,验证一下,执行下面SQL语句select IS_BROKER_ENABLED from master.sys.databaseswhere name='数据库名称'值为1表示开启,为0表示未开启(2)后台代码 public partial class Page1 : Page { private static string connStr; SqlDataReader sdr; public Page1() { 阅读全文
摘要:
(1)索引XML字段最大支持2G,如果不建立索引,遍历数据查询,性能会很差。Primary Index 必须有主键列,且为聚集索引。该索引中存放XML数据中Tag、Value和Path等信息辅助Path Index 用于基于Path查询,即XPath查询辅助Property Index 用于基于节点的查询辅助Value Index 用于XML值的查询XQuery即查询XML语言,包括基于XPath、Element和Attribute语法包括FLOWRFor 遍历满足条件节点的内容Let Order By Where Return(2)索引查询原始数据 CREATE TABLE Orde... 阅读全文