dgaspar
dgaspar
An `Order` HasOne `OrderStatus` (Enumeration class). https://github.com/dotnet-architecture/eShopOnContainers/blob/c3f7178631d3ab1e9e39810e782272e888317a87/src/Services/Ordering/Ordering.Domain/AggregatesModel/OrderAggregate/Order.cs#L24-L25 When updating that status, I noticed that only the underlying `_orderStatusId` was modified by the methods but `OrderStatus` remained untouched (and out of...
Both "public" and "internal" OpenAPI specs seem to be missing the documented [`three_d_secure`](https://stripe.com/docs/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-three_d_secure) property for the schema `payment_intent_payment_method_options_card`. Is there a plan for adding it? Or am I missing something?
In one of my projects, I already have *the* `Entity` and `ValueObject` base implementations (I guess this is very common, right?) that differ from the ones provided by this package....
Let's say I want to rely on a Specification inside my domain model's setter method (that will mutate the object) and reuse it when validating a Command at the Application...
Any chance `StackExchange.Exceptional` could start relying on `Microsoft.Data.SqlClient` instead of `System.Data.SqlClient`? https://github.com/NickCraver/StackExchange.Exceptional/blob/a3e787a08f21859c653c6c609059334b4e8eeac3/src/StackExchange.Exceptional.Shared/Stores/SQLErrorStore.cs#L4 This seems to be the last line preventing my system from getting rid of the old `System` one....
Notice how it's impossible to set a `failureStatus`: https://github.com/ritterim/RimDev.AspNet.Diagnostics.HealthChecks/blob/672a4f810ca8390027bf06eed4686eb381d24e26/src/RimDev.AspNet.Diagnostics.HealthChecks/RimDevAspNetHealthCheckService.cs#L65 ## What business problem is this hoping to solve? I'm trying to lower the severity of some health checks (e.g., from...
In the prefpane, it would be nice to have a button to flush the DNS cache
Would it be possible to expose a `Metered` property in the `Invoice.InvoiceLineItem` model? The value is already coming from the wire. By adding this method: ```csharp public bool Metered {...