码迷,mamicode.com
首页 >  
搜索关键字:expression    ( 3928个结果
正则表达式 小结
c# regex expression 正则表达式
分类:其他好文   时间:2014-09-24 02:55:35    阅读次数:221
delphi 常用字符函数
二、去空格函数1、LTRIM() 把字符串头部的空格去掉。2、RTRIM() 把字符串尾部的空格去掉。三、取子串函数1、leftstr()LEFTstr (, )返回str 左起 integer_expression 个字符。2、RIGHTstr()RIGHTstr (, )返回str 右起 int...
分类:其他好文   时间:2014-09-23 23:22:14    阅读次数:216
LinqPad4 Language
LinqPad有languangeC# Expression在这个里面只能写一句linq语句,不能带结尾的分号linq: from a in Alliance_SpecialCommission_Rules join b in Alliance_SpecialCommission_TicketsRe...
分类:其他好文   时间:2014-09-23 18:40:55    阅读次数:225
快速构建Windows 8风格应用1-开发工具安装及模拟器使用
原文:快速构建Windows 8风格应用1-开发工具安装及模拟器使用本篇博文主要介绍的是开发Windows 8风格应用中常用的两个开发工具:Visual Studio 2012和Expression Blend for Visual Studio 2012、Windows 8模拟器功能按钮介绍以及V...
分类:Windows程序   时间:2014-09-23 17:05:14    阅读次数:339
DataTable.Compute()用法
一、DataTable.Compute()方法說明如下作用: 计算用来传递筛选条件的当前行上的给定表达式。 格式為: Object Compute (string expression,string filter)参数: expression:要计算的表达式。 expression 参数需要...
分类:其他好文   时间:2014-09-23 15:18:04    阅读次数:286
MVC 自定义 以表达式树为参数的htmlhelper
public static MvcHtmlString Try( this HtmlHelper htmlHelper, Expression> expression){ var builder = new TagBuilder("textarea"); builder.A...
分类:Web程序   时间:2014-09-23 02:55:13    阅读次数:255
多步骤查询的解决方案
使用SQL VIEW和CTE(common table expression)去把复杂查询简化,而不要使用JOIN,影响性能。WITH step1 AS (SELECT 1,2 FROM orders o, src1 c WHERE c.key1 = o.key1 AND con1=1),st...
分类:其他好文   时间:2014-09-23 01:54:53    阅读次数:212
【MongoDB】The Regex Expression query of MongoDB
In the past two blogs, the topic mainly focus on...
分类:数据库   时间:2014-09-23 01:28:03    阅读次数:283
switch语句(C++)
一般用法 switch ( expression ) statement常用用法switch ( expression ) { case const-expression : statement [ default : statement ] }在C++中,expression必须是int型 cha...
分类:编程语言   时间:2014-09-22 18:25:12    阅读次数:251
LINQpad 用法汇总
// C# Expression //Courses // .Join ( // CourseSections, // course => course.CourseId, // section => section.CourseId, // (course, section) => course ...
分类:其他好文   时间:2014-09-22 15:25:32    阅读次数:319
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!