I'm using the 1.0.2 beta release and have read the documentation stating that Generic support is now included.
I cannot find any good examples or documentation that demonstrates how to make use of this for my collections.
I have the following class:
Code:
public class Project {
private IList _ProjectClasses;
}
I would prefer to use:
Code:
public class Project {
private IList<ProjectClass> _ProjectClasses;
}
can someone show me what the mapping file would look like and what my Project class and or ProjectClass definitions would look like..?
Thanks in advance.