摘要: Temporary Tables and the TableType Property [AX 2012]1 out of 1 rated this helpful-Rate this topic Updated:November 5, 2013 Applies To:Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 ... 阅读全文
posted @ 2014-06-04 17:13 Reinhard_Hsu 阅读(201) 评论(0) 推荐(0) 编辑
摘要: Temporary InMemory Tables [AX 2012]This topic has not yet been rated-Rate this topic Updated:October 12, 2012 Applies To:Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, ... 阅读全文
posted @ 2014-06-04 17:09 Reinhard_Hsu 阅读(462) 评论(0) 推荐(0) 编辑
摘要: Table Properties [AX 2012]1 out of 2 rated this helpful-Rate this topic Updated:July 20, 2012 Applies To:Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynami... 阅读全文
posted @ 2014-06-04 17:06 Reinhard_Hsu 阅读(623) 评论(0) 推荐(0) 编辑
摘要: Table Groups [AX 2012]0 out of 1 rated this helpful-Rate this topic Updated:February 21, 2012 Applies To:Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynami... 阅读全文
posted @ 2014-06-04 17:01 Reinhard_Hsu 阅读(300) 评论(0) 推荐(0) 编辑
摘要: Extended Data Type Properties [AX 2012]This topic has not yet been rated-Rate this topic Updated:May 18, 2011 Applies To:Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, ... 阅读全文
posted @ 2014-06-04 16:55 Reinhard_Hsu 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: Base Enum Properties [AX 2012]This topic has not yet been rated-Rate this topic Updated:December 6, 2011 Applies To:Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Micro... 阅读全文
posted @ 2014-06-04 16:48 Reinhard_Hsu 阅读(547) 评论(0) 推荐(0) 编辑
摘要: 6.0: AxCryptoClient - New encryption key created 6.0: Unable to InitializeSession. 6.0: No built-in message corresponding to message id 0. 解决方法: 1、将登录 阅读全文
posted @ 2014-05-30 17:24 Reinhard_Hsu 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/ego/p/3321122.html错误:Could not load type 'System.Reflection.AssemblySignatureKeyAttribute' from assembly 'mscorlib, Version=... 阅读全文
posted @ 2014-05-30 08:34 Reinhard_Hsu 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 最近想写一个博客系统,主要有以下几点功能。 能够使用Live Writer来发布、修改文章 使用MongoDB作为持久化 对于博客中的图片、CSS、JS文件,使用CDN加速 后期可加上Radis 使用MVC5,BootStrap 所以先收集下资源,慢慢写。 这里有一个开源博客,里面有MetaWeBlog的实现,可以作为参考: https://github.com/madskristensen/M... 阅读全文
posted @ 2014-05-23 20:40 Reinhard_Hsu 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.ehsanghanbari.com/Post/20/how-to-create-urlslug-in-aspnet-mvc UrlSlug Is a way of generating a valid Url, and using the title of an article to generate a URL. UrlSlug is very important i... 阅读全文
posted @ 2014-05-22 21:59 Reinhard_Hsu 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 1.介绍 该文档是1.8版本的C#驱动。 本节教程讨论C#类和BSON文档之间的序列化和反序列化。序列化是将对象映射成一个可以存储在MongoDB中的BSON文档的过程,反序列化是从一个BSON文档重新构建一个对象的过程。由于这样的原因,序列化过程也总是被用做“对象映射”。 序列化通过BSON库处理。BSON库有一个可扩展的序列化架构,所有如果你需要控制序列化,你可以做到。BSON库提供一个默认序... 阅读全文
posted @ 2014-05-20 22:21 Reinhard_Hsu 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 1.介绍 该教程涵盖了1.8版本的C#驱动中的LINQ查询。你可能已经阅读最新的C# Driver Tutorial。 2.快速开始 首先,给程序添加下面的using声明 using MongoDB.Driver.Linq;然后,像往常一样,获取一个collection的引用变量:var collection = database.GetCollection("collectionname");写... 阅读全文
posted @ 2014-05-20 22:07 Reinhard_Hsu 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 1.下载 如果下载的.zip文件,只需要解压即可。 如果安装的.msi文件,它会将C#驱动DLL放在C:\Program Files (x86)\MongoDB\CSharp Driver xxx的位置。 2.将C#驱动DLL添加引用 MongoDB.Bson.dll MongoDB.Driver.dll 你也可以使用NuGet包,给项目安装驱动。 3.添加using声明 using MongoD... 阅读全文
posted @ 2014-05-20 21:30 Reinhard_Hsu 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Community Supported C# Drivers See the officially supported MongoDB C# driver mongodb-csharp driver simple-mongodb driver NoRM Tools MongoDB.Emitter Document Wrapper ASP.NET Membership and Role Pro... 阅读全文
posted @ 2014-05-20 20:53 Reinhard_Hsu 阅读(198) 评论(0) 推荐(0) 编辑
摘要: MongoDB C# Driver是官方提供的.NET C#驱动。 Getting Started with the C# Driver C# Driver Tutorial C# Driver LINQ Tutorial Serialize Documents with the C# Driver Authenticate to MongoDB with the C# Driver API D... 阅读全文
posted @ 2014-05-20 20:51 Reinhard_Hsu 阅读(368) 评论(0) 推荐(0) 编辑
摘要: CentOS镜像使用帮助收录架构i386x86_64SRPMS收录版本56更新时间每5小时更新一次使用说明首先备份/etc/yum.repos.d/CentOS-Base.repo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup下载对应版本repo文件, 放入/etc/yum.rep... 阅读全文
posted @ 2014-05-19 08:46 Reinhard_Hsu 阅读(306) 评论(0) 推荐(0) 编辑
摘要: Install MongoDB on Red Hat Enterprise, CentOS, Fedora, or Amazon Linux¶OverviewUse this tutorial to install MongoDB on Red Hat Enterprise Linux, CentOS Linux, Fedora Linux, or a related system. The tu... 阅读全文
posted @ 2014-05-19 08:15 Reinhard_Hsu 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 转自:本文发表于水景一页。永久链接:。转载请保留此信息及相应链接。4. 设置¶按照上面的方法安装之后,还需要一些简单的设置,比如网络访问。然后既然是做网页服务器,还需要让它可以使用域名来访问。但是因为各家的上网情况可能有所不同,这里预设一种情景:使用路由器在家里的各台设备之间共享网络连接。目前,这应该是一种很常见的方式吧?!这里假设无线路由器的 IP(网关的 IP)是 192.168.0.1,那么... 阅读全文
posted @ 2014-05-18 22:49 Reinhard_Hsu 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 转自:http://my.oschina.net/qihh/blog/73135 从左至右,第一位数字代表文件所有者的权限,第二位数字代表同组用户的权限,第三位数字代表其他用户的权限。 从左至右,第一位数字代表文件所有者的权限,第二位数字代表同组用户的权限,第三位数字代表其他用户的权限。 而具体的权限是由数字来表示的,读取的权限等于4,用r表示;写入的权限等于2,用w表示;执行的权限等于1,用x表... 阅读全文
posted @ 2014-05-18 16:51 Reinhard_Hsu 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/xiaodiejinghong/archive/2013/04/14/3019660.html 前一回合,我们对服务器软件Jexus作了简单的介绍,同时我们也对Jexus的整体配置作了详细的讲解,介绍了Jexus的进程守护工具"jws.guard",相信各位读者对于Jexus应该已经有或多或少的概念性认识。上回中说到,由于Jexus的知识点和功... 阅读全文
posted @ 2014-05-18 16:38 Reinhard_Hsu 阅读(5372) 评论(2) 推荐(4) 编辑
摘要: 转自http://www.cnblogs.com/xiaodiejinghong/archive/2013/04/05/3000404.html 3、Jexus的操作 经过两个章节关于Jexus的介绍,相信读者对于Jexus已经有了一个概念上的认识,从这个章节开始,接下来我们会对Jexus的使用进行实操,并通过操作Jexus时产生的现象进行讨论,从而进一步的了解并学会使用Jexus。 Linux软... 阅读全文
posted @ 2014-05-18 15:43 Reinhard_Hsu 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: 转自http://www.cnblogs.com/xiaodiejinghong/p/3720921.html 这是一个集成了 mono3.4.0 和 jexus5.6.0 的 jexus+mono 运行环境。 * 基于64位 CentOS v6.3操作系统编译和整合,因此只能用于x86_64操作系统。* 最适于64位的CentOS v6.3版。 操作步骤: 1、把 jwsmono-centos6... 阅读全文
posted @ 2014-05-18 15:37 Reinhard_Hsu 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 1.删除文件或文件夹转自 http://vv15.com/2011/02/centos-linux-rm-file/每次都记不住,发个文章记录一下。直接rm就可以了,不过要加两个参数-rf 即:rm -rf 目录名字-r 就是向下递归,不管有多少级目录,一并删除-f 就是直接强行删除,不作任何提示的意思删除文件夹实例:rm -rf /var/log/httpd/access将会删除/var/log... 阅读全文
posted @ 2014-05-18 15:02 Reinhard_Hsu 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.命令行工具putty在Mac下,可以直接使用超级终端ssh username@ipaddress2.可视化上传文件工具WinSCP在Mac下,使用Cyberduck 阅读全文
posted @ 2014-05-18 14:52 Reinhard_Hsu 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 本文转自 http://www.cnblogs.com/chusiping/archive/2011/11/10/2243805.html 和 http://www.jb51.net/os/RedHat/73089.html 1.centos安装wget yum -y install wgetSearching for GCC...The path "" is not valid path t... 阅读全文
posted @ 2014-05-18 14:49 Reinhard_Hsu 阅读(365) 评论(0) 推荐(0) 编辑