I'm building a blog using C# and nHibernate for my database persistence. I want to make the entries taggable so I have an IList for the tags property. But how do I map this to a comma separated list in a single column in my database?
I want to avoid using a separate table for the tags and just keep them in one column as a separated list. So I'm basically trying to map a comma separated list in the database to a IList property. Is this possible in nHibernate?