摘要:
想要在C#中使用MongoDB,首先得要有个MongoDB支持的C#版的驱动。C#版的驱动貌似有很多种,如官方提供的samus。 实现思路大都类似。这里我们用官方提供的mongo-csharp-driver :下载地址:http://github.com/mongodb/mongo-csharp-d 阅读全文
2016年6月19日
摘要:
这里采用的是mongoDB官网推荐使用.net驱动:http://mongodb.github.io/mongo-csharp-driver/2.0/getting_started/quick_tour/有关于MongoDB的安装读者可以参考其他的博客,对于基本的学习来说并不需要进行过多的配置。 创 阅读全文
摘要:
Definitions and BuildersThe driver has introduced a number of types related to the specification of filters, updates, projections, sorts, and index ke 阅读全文
摘要:
svcutil.exe http://localhost:9065/ServiceDemo.svc?wsdl这将生成一个配置文件和一个包含客户端类的代码文件。 下面我们就用这个是怎么生成的:1,打开Visual Studio命令提示(Visual Studio Tools下面)2,在打开的界面里面输 阅读全文
2016年6月17日
摘要:
工具:svcutil.exe 参数:指定wsdl、输出源码文件、输出配置文件 示例: D:\>svcutil.exe http://localhost:8087/DataService/?wsdl /out:Client.cs /config:app.configMicrosoft (R) Serv 阅读全文
2016年6月13日
2016年6月12日
摘要:
PrerequisitesThe prerequisite for running these examples are the following sample tables with test data and a Stored Procedure. The following script h 阅读全文
2016年6月8日
摘要:
Sometimes there is a need to change the name of your database whether this is because the original name was based on some other project that is no lon 阅读全文
2016年6月7日
摘要:
2015年,软件开发界发生了很多变化。有很多流行的新语言发布了,也有很多重要的框架和工具发布了新版本。下面有一个我们觉得最重要的简短清单,同时也有我们觉得值得你在2016年花时间精力去学习的新事物的一些建议。 大趋势 在过去的几年里,有一个越来越明显的趋势是web应用的商业逻辑逐步从后端转移到了前端 阅读全文
摘要:
Mapping简述 Elasticsearch是一个schema-less的系统,但并不代表no shema,而是会尽量根据JSON源数据的基础类型猜测你想要的字段类型映射。Elasticsearch中Mapping类似于静态语言中的数据类型,但是同语言的数据类型相比,映射还有一些其他的含义。Ela 阅读全文