With help of LINQ to entites I want to create this table in memory from the SQL table above(B):
Here is my entity:
    private class HelperClass
    {
        public string clientName { get; set; }
        public string authority { get; set; }
        public int objectzsNumber { get; set; }
        public int month { get; set; }
        public int semiannual { get; set; }
        public int quarterly { get; set; }
        public int yearly { get; set; }
    }
Any idea how do I create table B in memory from table A using LINQ to entity?

