Hi,
was looking at the available documentation regarding the connection strings for on-premise and Azure MS SQL Server and comparing to my project I've encountered that in some connections strings I have "packet size=4096", but for the most (including test and production) I don't. Further research indicated that MS SQL Server has a default value for packet size of 4096, however, it turns out to be that ADO.NET defaults to 8000. I also noticed that one of the generated LLBLGen projects does have an App.config file that contains packet size=4096 for the connection string.
Question is: what is your take on the packet size, should it be explicitly set to 4096 or left as a default (8000)?
Thank you!
Context: MS SQL Server 2016 and Azure SQL Database