C#中用SmtpClient发邮件很简单,闲着无事,简单封装一下 IEmailFactory public interface IEmailFactory { IEmailFactory SetHost(string host); IEmailFactory SetPort(int port); I ...
分类:
其他好文 时间:
2016-07-21 00:32:12
阅读次数:
336
英文原文地址:https://github.com/jagregory/fluent-nhibernate/wiki/Getting-started 翻译原文地址:http://www.cnblogs.com/13yan/p/5685307.html 入门指南 Fluent NHibernate 概 ...
分类:
Web程序 时间:
2016-07-19 16:55:43
阅读次数:
286
Entity Framework Power Tools是一个由EntityFramework开发小组提供的工具,它可以从现有数据库生成Fluent款式的Code First代码。 大致来说,这个工具有这样几个功能:1) 按照现有数据库结构,生成Code First POCO class、DbCon ...
分类:
其他好文 时间:
2016-07-14 09:55:17
阅读次数:
174
解决了 orm 和 前端框架 剩下的 是 业务逻辑 了 。 哈 还有 各种 aop 组件 呢 。 大家 high 来 准备 用 fluent data 和 mysql 写一个 wcf 的 接口呢。 wcf 比 webservice 后出来吧 然后 在 用 web api 写一个 接口呢。。 ...
分类:
其他好文 时间:
2016-07-14 02:53:23
阅读次数:
131
今天继续给大家介绍一款简单到爆的开源组件,但是可以让你的控制台瞬间高大上。FluentConsole,主要功能非常简单,意思是更流畅的使用控制台。。其实真的Very Fluent。一起看看,时间很短,5分钟足以。他的基本功能有:1.可以控制Console输入的背景,以及字体的颜色;2.可以使用条件输... ...
分类:
Web程序 时间:
2016-07-06 10:04:35
阅读次数:
157
Entity Mappings using Fluent API: Here, we will learn how to configure an entity using Fluent API. We will use the following Student and Standard doma ...
分类:
移动开发 时间:
2016-07-05 17:12:45
阅读次数:
361
Fluent API in Code-First: We have seen different DataAnnotations attributes in the previous sections to override default Code-First Conventions. Here, ...
EntityTypeConfiguration Class in Code-First: Before we start to configure using Fluent API, let's see an important class of Fluent API. EntityTypeConf ...
分类:
其他好文 时间:
2016-07-05 16:59:02
阅读次数:
134
一、Access数据库配置 NHibernate本身不支持Access数据库,一开始看网上各种文档,捣敲浪费了N分钟。还是祭起Nuget神器引用NHibernate.JetDrive。代码如下,搞定收工。。。 private string FilePath { get; set; } private ...
分类:
数据库 时间:
2016-06-27 21:39:32
阅读次数:
223
Fluent API配置: 前面我们已经了解到使用DataAnotations特性来覆写Code-First默认约定,现在我们来学习Fluent API。 Fluent API是另一种配置领域类的方法,它比DataAnnotations特性提供更多的方法来配置,下表是Fluent API支持的类型映 ...