Thank you for your reply!
I'm passing the property into a hashtable. So in the .cs file it looks
like this:
insert method:
List<Temp> temp = new List<Temp>();
temp.add(new Temp() { ....//adding data here.... }
Hashtable htParams = new Hashtable();
htParams.add("OuterList", temp);
//select statement etc. etc...
temp class:
public class Temp {
public string PropertyA { get; set; }
public List<int> InnerList { get; set; }
}
So the data type you are saying is List<int>. So I'm confused why
OuterList[].InnerList is not a valid property?
On Apr 17, 3:24 pm, Debal Saha <
debal_s...@yahoo.com> wrote:
> I'm not sure , pl check your property data type in class and database , suppose I have a Table name student , there is some columns let's say one column is student name , so it should be string .......most probably like this ...
>
> Your exception is saying input string is not found .... so I guess that ....
>
> ________________________________
> From: Timo Hermans <
timo.herm...@techconnect.nl>