I'm receiving an exception like cannot convert from 'List' to 'string' when i'm declaring a list.
var query = new List<string>(){
new List<string>{"a", "b","c"},
new List<string> {"a"}};
I couldn't find out the error in above.Can somebody help me in this?