Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21374/NHibernate.DomainModel
Modified Files:
Assignable.cs MoreStuff.cs
Log Message:
Changed properties that were mapped to a <bag> to an IList
Index: Assignable.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/Assignable.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Assignable.cs 2 Jun 2004 04:53:24 -0000 1.1
--- Assignable.cs 30 Jun 2004 18:22:09 -0000 1.2
***************
*** 10,14 ****
{
private string _id;
! private ICollection _categories;
public string Id
--- 10,14 ----
{
private string _id;
! private IList _categories;
public string Id
***************
*** 18,22 ****
}
! public ICollection Categories
{
get { return _categories; }
--- 18,22 ----
}
! public IList Categories
{
get { return _categories; }
Index: MoreStuff.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/MoreStuff.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MoreStuff.cs 3 Jun 2004 13:31:52 -0000 1.1
--- MoreStuff.cs 30 Jun 2004 18:22:09 -0000 1.2
***************
*** 13,17 ****
private int _intId;
// <bag> mapping
! private ICollection _stuffs;
private string _name;
--- 13,17 ----
private int _intId;
// <bag> mapping
! private IList _stuffs;
private string _name;
***************
*** 29,33 ****
}
! public ICollection Stuffs
{
get { return _stuffs; }
--- 29,33 ----
}
! public IList Stuffs
{
get { return _stuffs; }
|