I'm using the ...Dynamic Linq... with ...Linq to Entities...So, I tested the normal ...List<Person>... with this code and everything's work:... List<Person> per = new List<Person>();
per.Add(new Person { IdNo = "1", LastName = "test", MiddleName = "go", ...