摘要:
本文将介绍下列工具:·代码片段编译工具:Snippet Compiler·正则表达式构建工具:Regulator·代码生成工具:CodeSmith·单元测试工具:NUnit·代码分析与检查工具:FxCop·.NET程序集检查工具:.NET Reflector·代码文档创建工具:NDoc·解决方案编译工具:NAnt·版本切换与转换工具: ASP.NET Version Switcher和Visual Studio .NET Project Converter没有好的工具,就写不出好的程序。除了众所周知的工具 阅读全文
摘要:
This article discusses:NUnit to write unit testsNDoc to create code documentationNAnt to build your solutionsCodeSmith to generate codeFxCop to police your codeSnippet Compiler to compile small bits of codeTwo different switcher tools, the ASP.NET Version Switcher and the Visual Studio .NET Project 阅读全文
摘要:
Entity SQL 是 ADO.NET 实体框架 提供的 SQL 类语言,用于支持 实体数据模型 (EDM)。Entity SQL 可用于对象查询和使用 EntityClient 提供程序执行的查询。l 关键字Value关键字ESQL 提供了 SELECT VALUE 子句以跳过隐式行构造。SELECT VALUE 子句中只能指定一项。在使用这样的子句时,将不会对 SELECT 子句中的项构造行包装器,并且可生成所要形状的集合,例如:SELECT VALUE it FROM NorthwindEntities.Customers as itit关键字 it 出现在 ESQL 中, 查询对象的 阅读全文