protected bool Equals(MySqlOptions other) { return(Equals(ConnectionSettings, other.ConnectionSettings) && Equals(ServerVersion, other.ServerVersion) && CharSetBehavior == other.CharSetBehavior && Equals(CharSet, other.CharSet) && Equals(NationalCharSet, other.NationalCharSet) && NoBackslashEscapes == other.NoBackslashEscapes && ReplaceLineBreaksWithCharFunction == other.ReplaceLineBreaksWithCharFunction); }
protected bool Equals(MySqlOptions other) { return(Equals(ConnectionSettings, other.ConnectionSettings) && Equals(ServerVersion, other.ServerVersion) && CharSetBehavior == other.CharSetBehavior && Equals(CharSet, other.CharSet) && Equals(NationalCharSet, other.NationalCharSet) && NoBackslashEscapes == other.NoBackslashEscapes && ReplaceLineBreaksWithCharFunction == other.ReplaceLineBreaksWithCharFunction && Equals(DefaultDataTypeMappings, other.DefaultDataTypeMappings) && Equals(SchemaNameTranslator, other.SchemaNameTranslator) && IndexOptimizedBooleanColumns == other.IndexOptimizedBooleanColumns); }
protected bool Equals(MySqlOptions other) { return(Equals(ConnectionSettings, other.ConnectionSettings) && Equals(ServerVersion, other.ServerVersion) && Equals(CharSet, other.CharSet) && Equals(NationalCharSet, other.NationalCharSet) && NoBackslashEscapes == other.NoBackslashEscapes && ReplaceLineBreaksWithCharFunction == other.ReplaceLineBreaksWithCharFunction && Equals(DefaultDataTypeMappings, other.DefaultDataTypeMappings) && Equals(SchemaNameTranslator, other.SchemaNameTranslator) && IndexOptimizedBooleanColumns == other.IndexOptimizedBooleanColumns && JsonChangeTrackingOptions == other.JsonChangeTrackingOptions && LimitKeyedOrIndexedStringColumnLength == other.LimitKeyedOrIndexedStringColumnLength); }