Piotrek Majewski
Piotrek Majewski
This is not so simple, IndexedDB & websql are async, this means that you can not do this with current implementation.
for polyfill I suggest lawnchair, or own adapters, but you would have to use callbacks, as IndexedDB and WebSQL are async. Any idea how to solve related-models changes? assuming we...
guid on the clinet may seem a good idea, but there is little chance of guid being in conflict with some other object, how do you propose to handle this...
Hi there, You may want to take a look on our approach to this problem, https://github.com/pxlpl/Offline There is still much work to be done, but it seems that this solution...
Strategy - is the object that controlls the flow of your synchronization. Our current implementation uses this order: (push & pull - makes more sense than pull & push. because...
@lorenzofox3 It seems that nothing has been committed lately (few months) so I need to ask if it Is possible to merge this PR and create a release or should...
same issue. The setTimeout trick worked.
the behavior is not consistent with the `tsc` output which transforms aliases as expected most common scenario for this requirement is when creating a lib which should not be published...
workaround is to use [tsc-alias](https://www.npmjs.com/package/tsc-alias)
temporary workaround: ```c# class X509Hanlder: DelegatingHandler { private CertificateRepository _certificateRepository; public X509Hanlder(CertificateRepository certificateRepository) { _certificateRepository = certificateRepository; } protected override async Task SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { var inner =...