How do I serialize DbConnectionStringBuilder object. I need to send the object from server to client.
Tried serializing the IDcitionary using this approach. But On client side, when I add those keys to object it assigns a funky connection string to it. And if you do
_connectionStringBuilder.ConnectionString = string.Empty;
That removes all the keys.
is it possible to return DbProviderFactory object from server to client ?