This question is locked. New answers and comments are not allowed.
Hello Telerik team!
private IList<PersonPredictedValueMethod> pvMethods { get; set; } [Transient] public List<PersonPredictedValueMethod> PVMethods { get { if (pvMethods != null) { return (List<PersonPredictedValueMethod>)pvMethods; } return null; } set { pvMethods = value; } }In such case I have an exception
Unable to cast object of type 'Telerik.OpenAccess.TrackedList`1[PersonPredictedValueMethod]' to type 'System.Collections.Generic.List`1[PersonPredictedValueMethod]'