摘要: 1、EF Code First一对一关联关系 项目结构图: 实体类: Account.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Northwind.App.Entities{ public class Account { /// <summary> /// 账户ID /// </summary> public int AccountID { get; set; } /// <... 阅读全文
posted @ 2013-01-31 21:18 libingql 阅读(34430) 评论(9) 推荐(2) 编辑