码迷,mamicode.com
首页 >  
搜索关键字:c++ poco solaris_x86    ( 215个结果
添加 [DataContract] 到 Entity Framework 6.0 POCO Template
1. 添加using System.Runtime.Serialization; 找到这行 includeCollections ? (Environment.NewLine + "using System.Collections.Generic;") : "", 大约 433行 在这行下面添加一行 ...
分类:其他好文   时间:2016-05-22 19:53:12    阅读次数:167
【配置属性】—Entity Framework 对应表字段的类型的设定配置方法
摘自:http://www.cnblogs.com/nianming/archive/2012/11/07/2757997.html Entity Framework Code First的默认行为是使用一系列约定将POCO类映射到表。然而,有时候,不能也不想遵循这些约定,那就需要重写它们。重写默认 ...
分类:其他好文   时间:2016-05-20 11:14:12    阅读次数:268
Entity Framework 6 Recipes 2nd Edition(13-10)译 -> 显式创建代理
问题 你有一个POCO实体,原本在执行一个查询时动态创建代理,现在你不想EF延迟创建代理带来的代价. 解决方案 假设你有一个如图Figure13-15的模型 Figure 13-15. A model for CDs and music titles 对应的POCO类如代码Listing 13-27 ...
分类:其他好文   时间:2016-05-17 06:19:20    阅读次数:164
Entity Framework 6 Recipes 2nd Edition(13-5)译 -> 使POCO的修改追踪更高
问题 你正在使用POCO,你想提高修改跟踪的性能,同时使内存消耗更少.另外,你想通过EF的CodeFirst方式来实现. 解决方案 假设你有一个关于Account(帐户)和相关的Payments(支付)的模型,如Figure 13-7 Figure 13-7. A model with an Acc ...
分类:其他好文   时间:2016-05-16 01:42:55    阅读次数:232
ServiceStack.Redis 数据操作
简单的字符串类型数据写. Poco在redis中会被序列化成Json字符串. Redis以快著称, 以上写法不是最快的.因为上边循环中每次都是进行了一个独立的Redis访问, 即进行了一次Query, 返回了一个Response 更快的写法是使用pipeline mode. Pipeline mod ...
分类:其他好文   时间:2016-04-27 17:04:20    阅读次数:151
EF.Reverse.POCO.Core.ttinclude"
<#@ include file="EF.Reverse.POCO.Core.ttinclude" #><# // v2.18.1 // Please make changes to the settings below. // All you have to do is save this fil ...
分类:其他好文   时间:2016-04-18 18:47:19    阅读次数:300
EF中的Code First
EF中的Code First 一些概念 ? POCO POCO(Plain Old CLR Object)的概念是从java的POJO借用而来,而两者的含义是一致的,不同的仅仅是使用的语言不一样。所以POCO的解释就是“Plain Old C# Object”。POJO的内在含义是指那些没有从任何类
分类:其他好文   时间:2016-03-09 17:27:58    阅读次数:234
petapoco IsNew
// Check if a poco represents a new record public bool IsNew(string primaryKeyName, object poco) { var pd = PocoData.ForObject(poco, primaryKeyName);
分类:其他好文   时间:2016-02-19 19:01:55    阅读次数:232
Poco版信号槽
#include "Poco/BasicEvent.h"#include "Poco/Delegate.h"#include using Poco::BasicEvent;using Poco::Delegate;#include class A{public: BasicEvent theEven...
分类:其他好文   时间:2015-11-16 19:12:57    阅读次数:218
AIX6.1用g++安装Poco-1.6.1-all
项目终于到了把程序往小型机上部署的阶段了。不得不说AIX真是让人恶心,一个Poco编译弄了我1周时间。网上根本没有相关的资料。1. AIX下安装gcc/g++:在ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/gcc/下...
分类:其他好文   时间:2015-10-22 20:50:13    阅读次数:182
215条   上一页 1 ... 12 13 14 15 16 ... 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!