I have a little mapping problem for NHibernate. First of all my Database structure looks like this.
A Table Post(Id, Title, Text ...... ) with Articels A Table Tag(Tagname) with Tags (Tagcloud) A Table PostTag(PostId, TagName) for mapping Post and Tag.
So every post can have more Tags. Now I wanna map the Tags in a Post as a basic collection with strings, not as objects of Tag for example. So does anyone know how to do this? I'm new to this and I cant find a answer until now :)
So faithfully. Jan