I am using C# with postgresql. In the database I have a table named test and in this table I have a column named arr that it's datatype is double[] and I stored multiple record like this {1, 1, 2, 3, 0, 5, 1, 4}. Now, how to return those records into C# program and stored in a list for example List<double[]> arr1 = new List<double[]>();
Who can help me?