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
Hello
I started to use your sdk for my personal projects
I have some questions.
in class public class StorageContext there are two pairs of methods
public async Task InsertOrReplaceAsync<T>(IEnumerable<T> models) where T : new()
public async Task InsertOrReplaceAsync<T>(T model) where T : new()
public async Task MergeOrInsertAsync<T>(IEnumerable<T> models) where T : new()
public async Task MergeOrInsertAsync<T>(T model) where T : new()
In Interface IStorageContext
You do not declare
public Task InsertOrReplaceAsync<T>(IEnumerable<T> models) where T : new()
Is this is intentional or simply omission?
The text was updated successfully, but these errors were encountered:
the method for single item is just a helper operation. I guess we can add it to the interface for convenience reasons. Are you able to provider a pull request?
The text was updated successfully, but these errors were encountered: