In a SQL Server connection string you can specify a boolean value for the Replication
key, for example:
Data Source=.;Initial Catalog=Example;Integrated Security=True;Replication=True;
The closest I can find to documentation of this is here, which says:
Gets or sets a Boolean value that indicates whether replication is supported using the connection.
But to me that doesn't really explain in enough detail what the setting actually does. Can someone give a deeper explanation of this?
I am working with databases that make use of replication, so it seems that this setting could be relevant.