tenwit wrote:
You can't map multiple columns to elements in a collection. However, you can map them all separately, and provide a collection or array that is backed by those 15 get/set methods. That would satisfy both hibernate and your API requirements.
I don't know how to write backed collections in whichever .NET language you're using. In java, you'd extend AbstractList, overriding the get, add, remove and size methods (so languageList.get(7) would return internalLanguage7, etc.). Hope that helps.
That is _exactly_ what I was looking for. I am blushing a bit as this is way too simple. I think I'm over complicating things from exhaustion.
Thank you VERY much!!