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
While i'm working on data docs, I notice that IDataMigrationManager has two versions of UpdateAsync() one accept feature and the other one accepts a list of features
IMHO the UpdateAsync(IEumerable<string> features) could be an extension methods instead
I'd rather do it the other way around: UpdateAsync(IEnumerable<string> featureIds) can (and actually does) optimize updating multiple features and do it better than just call UpdateAsync(string featureId) in a loop.
While i'm working on data docs, I notice that
IDataMigrationManager
has two versions ofUpdateAsync()
one accept feature and the other one accepts a list of featuresIMHO the
UpdateAsync(IEumerable<string> features)
could be an extension methods instead/cc @jtkech
The text was updated successfully, but these errors were encountered: