My db column is a comma seperated list of category ID's.
I have a public property in my class that is:
List<int> CategoryIDs {get;set;}
I want to somehow lazy load this property, that when it is used, it will split the db column by its comma (its a comma seperated list of ids like: 1,2,343,2342).
It will then initialize a List.