I have a Person class which has a Tags property
public virtual System.Collections.Generic.List<Tag> Tags { get; set; }
which contains a collection of Tag class objects.
Given the system design, the instance of the Person class is created initially and then at a later time the user can add tags to a Person.
Being new to NHibernate I can figure out how to add one or more tags to the existing person object. Do I need to retrieve the Person object then Add() one or more new Tag objects? There may also already be Tag objects in the List.
Same question related to removing an existing Tag object in the Tags collection.
Thanks