You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public IEnumerable<LocalConnectionPropertiesModel> Deserialize(string serializedData)
.Select(m => new XElement("Node",
new XAttribute("ConnectionId", m.ConnectionId),
new XAttribute("Connected", m.Connected),
new XAttribute("Expanded", m.Expanded),
new XAttribute("Favorite", m.Favorite) // added #1470
));
Expected Behavior
Favorites are reloaded when mRemoteNG is reloaded when using SQL/MySQL connections
Current Behavior
This feature is missing the local property reload
Possible Solution
mRemoteNG-develop\mRemoteV1\Config\Serializers\ConnectionSerializers\MsSql\LocalConnectionPropertiesXmlSerializer.cs
Steps to Reproduce (for bugs)
Context
The feature saves and reloads using the standard XML connection but not with SQL Server configured (haven't looked at the MySQL version)
Your Environment