1
namespace Castle
.ActiveRecord
.Framework
.Internal
.Tests
.Model
3 using System
.Collections
.Generic
;
6 public class IdBagPrimitive
9 private IList
<string> items
;
18 [HasAndBelongsToMany(RelationType
= RelationType
.IdBag
, Table
="IdToItems", ColumnKey
="keyid", ElementType
= "string")]
19 [CollectionID(CollectionIDType
.Sequence
, "col", "Int32")]
20 public IList
<string> Items
23 set { items = value; }