Let's say I have a really simple class:
public class myClass{
public int Id {get;set;}
public object SomeProperty {get;set;}
public List<string> ListOfStrings {get;set;}
}
whenever I try to retrieve myClass
entity from the database, ListOfStrings
will be empty even though I have accurately debugged into the CRUD process to make sure that ListOfStrings
is well populated before Insert()
or Update()
method is called on the entity