C# 常用接口学习 ICollection<T> 作者:乌龙哈里 时间:2015-11-01 平台:Window7 64bit,Visual Studio Community 2015 参考: Microsoft Refernce Souce MSDN When to use IEnumerable, ICollection, IList and List 章节: 接口 ICollection<T> 实现 正文: 我们先来看看 ICollection<T>的源代码: p…
一.Hibernate简介 1.Hibernate在开发中所处的位置 2.ORM映射 Object :面向对象领域的 Relational:关系数据库领域的 Mapping:映射 Object: Relational public class Person{ create table presons( private String name; name varchar(100), private int age; age int // getter and setter } ); new Per…