Marcelo Volmaro

Results 40 comments of Marcelo Volmaro

This is tangential to this issue, but it could solve my problem (letting me implement TryParse), but may be useful so you don't have to implement X feature every time...

One thing that it's not clear for me: Does TryParse calls the Validate method? I'm asking so I don't have to implement multiple validations (one in the Validate method, another...

@SteveDunn That's perfect. Thanks!

Mmm.. please note that I'm actually using the _isInitialized to check for a valid state. Removing that field would render all my VOs unusable (for "reasons" I need to be...

Just to add another snippet that I'm using in my solutions: Add all VOs that have `EfCoreValueConverter` to the `ModelConfigurationBuilder`: ```cs internal static class VogenExtensions { public static void ApplyVogenEfConvertersFromAssembly(this...

@julealgon Not sure I'm following you. I don't have to register any EDM models for the batch handler to work. The endpoints are standard aspnetcore controller/actions, registered with HttpMethodAttribute/UseRouting. This...

@julealgon That's what's strange. If it uses a different serializer, it should work anyways. There is nothing in the DTO that states how the serialization should be. Regarding the OData...

@habbes: 1) Correct. The message example I posted was sent to `POST /api/$batch`. 2) The action is under the `/api/user/{id}` endpoint. It's a standard webapi action that receives the id...

Mmm.. I don't think that's the problem. First because records are classes (unless it's a struct record). Second, because I'm already using records as commands and it works just fine....

Mmmm.. I don't know how the properties are converted... I'm passing an object with the property `Permit` filled in with an instance of a Permit to the `RenderAsync` method. No...