Jérémie Chassaing

Results 42 comments of Jérémie Chassaing

To implement a TryCreate/TryUpdate correctly, we need to implement a TryPublish that is returning the PublishAck without raising an exception in case of an error code. This could be kept...

Eventually we'll want to implement also UpdateAsync and TryUpdateAsync.

For the Method/TryMethod pattern I usually proceed like this: Implement the TryMethod first that doesn't raise an exception but indicates a success or error. Implement then Method by calling TryMethod...

Would it be ok to add a flag in PublishOptions to indicate that Publish should not raise exception on error ? This could avoid passing an extra parameter along the...

Had the same problem. adding framework: net6.0 in the #r "paket: ..." and removing the global.json fixed it.

I checked the IL ecma spec, and it seems everywhere else, types are referenced by index in a table, but in the case of attributes, the attribute blob data contains...

The problem occurs with the 'choice' implementation in the WsdlProvider. The wsdl can contain a complex type that C that has a field that can be different types based on...

so it works as long as you reference external types. but not when using provided types.

To add something to the discussion, I've found no real need for common code to implement ES since I read Rinat's code a few years ago. This is every time...

I managed to fix it in my azure function by setting the app config **WEBSITE_RUN_FROM_PACKAGE** to **0** When it was 1, Kudu refused the editing.