Andriy Savin
Andriy Savin
@fabiocav You could introduce a new set of `ConfigureWebJobs` with a flag parameter, or add such parameter to the existing methods with default value (though this would be a breaking...
I want to augment described scenarios with the following. I have need to use some environment information to initialize a function/function app on start. For example, I want to use...
> But if you want to display a some information about all of your customers, fetching their addresses is a performance killer. I think you're misusing Aggregate DDD term. Aggregate...
> And even on the command side, if you fetch an invoice to change its status you do not want all the invoice lines to be fetched. DDD clearly states...
Just want to mention an important requirement for the feature: global filters support. My scenario: I have entities with TenantId associated with them, and I use global filter to limit...
Owned entities have mostly the same traits as regular entities, so they are required to be reference types (so the change tracker can track them). A value convertor is not...
@chrisbbe It's as simple as this: ```csharp public sealed class Price : IComparable, IEquatable { private readonly Money price; public decimal Amount => price.Amount; public string Currency => price.Currency.Code; public...
@hez2010 I tried that, but this technique only works for managed memory. The leak is apparently in unmanaged memory (IBuffer), but may be caused by a bug in managed code....
@bhagyshricompany I stopped that function to free CPU for other services in that service plan. Let me know if you need me to start it to reproduce the issue.
@tiagonmas in my case I was using a non-default Azure AD which didn't have a subscription bound to it. When I switched to my default AD, all started to work....