随笔分类 - 00.Net
摘要:1. HelloWebService.javapackage com.xx.webservices;import javax.jws.WebMethod;import javax.jws.WebParam;import javax.jws.WebResult;import javax.jws.Web...
阅读全文
摘要:安装VS2010 SP1后,再安装mvc3会报错,估计原因是此安装包会安装VS的补丁,而sp1的补丁版本高过此安装包的。AspNetMVC3ToolsUpdateSetup.exe解决办法:运行此安装包,停在 接受协议 的地方,它会在盘根目录解压一个临时文件夹,进入后,单独安装如下4个msi即可。a...
阅读全文
摘要:搞.net开发这么多年,知道和用过包含include指令吗? from: 来源 1. 数据绑定语法:<%# %> Here is ...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using System.Runtime.CompilerServices;namespa...
阅读全文
摘要:http://msdn.microsoft.com/en-us/library/system.dynamic.expandoobject.aspxusing System;using System.Collections.Generic;using System.Dynamic;using Syst...
阅读全文
摘要:1.Enable-Migrations2.Add-Migration TagName3.Update-Database注意,每次更改cs后,注意Build,再运行命令。MySql参考:https://blogs.oracle.com/MySqlOnWindows/entry/entity_frame...
阅读全文
摘要:OCR (Optical Character Recognition,光学字符识别)是指电子设备(例如扫描仪或数码相机)检查纸上打印的字符,通过检测暗、亮的模式确定其形状,然后用字符识别方法将形状翻译成计算机文字的过程;即,对文本资料进行扫描,然后对图像文件进行分析处理,获取文字及版面信息的过程。如...
阅读全文
摘要:string query = "select a.CustomerName as CustomerName, b.ProductName as ProductName from Customer as a join a.Product as b" IQuery query = applicationSession.CreateQuery(query);var listResult = query.SetResultTransformer(NHibernate.Transform.Transformers.AliasToEntityMap).List();string cus
阅读全文
摘要:http://zh.wikipedia.org/wiki/%E5%8D%8F%E5%8F%98%E4%B8%8E%E9%80%86%E5%8F%98协变与逆变是程序设计语言中的类型系统的一对概念。类型系统支持子类型。例如,如果Cat是Animal的子类型,那么Cat类型的表达式可用于任何出现Animal类型表达式的地方。变型(variance)是指,如何根据其组成类型来确定更复杂的类型(如Cat列表对Animal列表,返回Cat的函数对返回Animal的函数,...,等等。)之间的子类型关系。依赖于类型构造器的变型性质,复杂类型的子类型性质可分为保持、逆转、与忽略。例如,在C Sharp中:I
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using System.Linq.Expressions;using System.Runtime.CompilerServices;namespace TestSyncMethodAttr{ class SyncHelper { [MethodImpl(MethodImplOptions.Synchronized)] public void E...
阅读全文
摘要:http://stackoverflow.com/questions/700871/publish-webapplication-using-nant
阅读全文
摘要:http://james.newtonking.com/json/help/index.html
阅读全文
摘要:XML-RPChttp://zh.wikipedia.org/wiki/XML-RPCXML-RPC是一个远程过程调用(远端程序呼叫)(remote procedure call,RPC)的分布式计算协议,通过XML将调用函数封装,并使用HTTP协议作为传送机制[1]。.net中一个比较流行的实现是: xml-rpc.nethttp://xml-rpc.net/faq/xmlrpcnetfaq-2-5-0.html1. Introduction1.1 What is XML-RPC?To quote the XML-RPC.com site:"It's a spec and
阅读全文
摘要:http://ultidev.com/products/UWS-Cassini-Pro/
阅读全文