Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
280
non-homogenous data not grouped by datatype
posted

I'm trying to show data that is non-homogenous, basically I have something like

    public class Change {
        public string Column { get; set; }
    }


    public class Change<T> : Change {
        public T Before { get; set; }
        public T After { get; set; }
    }

where all my actual data is instances of Change<T> where T is e.g. string,int, DateTime

The grid alw***em to group by T wether I specify SpecifyRecordsByDataType="False" or not, but I want it all in the same grid.

Am I missing something or hitting a bug?

 

Currently using version 8.2