This question is locked. New answers and comments are not allowed.
Hi,
From my own experiment, it seems that the following types of collections are not supported in forward mapping
- List<T>
- Collection<T>
- ReadOnlyCollection<T>
- ReadOnlyObservableCollection<T>
- Custom Collection like the following
- public class CustomerCollection : Collection<Customer>
Using these types of collections in the fields will generate the following error:
Make this field [transient] as it is refers to a Non-persistent class or a Non-supported type
I would like to know what kinds of collections are supported and whether it is possible to use custom collection because it is very common to use custom collection in a domain model. Thanks!