摘要: 前面第2篇文章说了下基础的映射,本篇说下实体的关系映射先来看看 One-To-One关系准备数据库表product表detail表需要注意:副表 detail 的主键不能为自增类型主表Product与detail表的主键名必须一致编写实体类product.cs 1: [ActiveRecord("Product")] 2: public class Product:ActiveRecordBase<Product> 3: { 4: private Detail _detail; 5: [PrimaryKey] 6: public in... 阅读全文
posted @ 2012-10-15 01:34 Ian.w 阅读(516) 评论(0) 推荐(0)