Hello
I want to serialize DBParameter.but it gives following error when trying to serialize
"Use the XmlInclude or SoapInclude attribute to specify types that are not known statically."
here is my code
[Serializable]
public class DemoClass{
public List<
DbParameter
> Parameters { get; set; }
}
can anybody help me to sortout this issue ? how can I serialize Parameters property ?
Thanks