j-mok
j-mok
RT version: 1.6.1 .NET 6 I've been getting this when building: ``` Reinforced.Typings : Unexpected error RT0999: Input string was not in a correct format. ``` After some investigation I've...
There's been a [rebranding ](https://learn.microsoft.com/en-us/entra/fundamentals/new-name) of Azure Active Directory to Microsoft Entra ID. This PR reflects this change in the most user-facing spot, that is the log-in page, but I...
**Problem:** The current logic for controller action tagging in Swagger is to group actions by modules and tag the rest with `Platform` fallback: https://github.com/VirtoCommerce/vc-platform/blob/3cb9f46f239bd37d7ac2d5b59d6ef726c59ddeb9/src/VirtoCommerce.Platform.Web/Swagger/SwaggerServiceCollectionExtensions.cs#L215-L235 The problem is that if some...
The CRUD/search service pairs in catalog follow an intuitive pattern: - `ICatalogService`/`ICatalogSearchService` - `ICategoryService`/`ICategorySearchService` - `IVideoService`/`IVideoSearchService` - etc... And then there's this: - `IItemService`/`IProductSearchService` I know this may be due...
When I have a product variation that inherit reviews (descriptions) from the parent, these reviews are editable, but the edits won't get persisted in the database - they get silently...
We have come across some performance issues on VC startup, and it turned out there was high database traffic related to updates on some properties. In our setup we run...
I noticed that property and property values inheritance on products works in an unexpected way: it seems that while all properties are inherited from a product's line of ancestry up...
I'm wondering if there is currently any particular reason the platform uses NewtonsoftJson instead of the now-default System.Text.Json for ASP.NET MVC? Are there any particular customizations that would be difficult...
Hi, is there any reason the platform registers the DI service collection in itself? This feels very weird... https://github.com/VirtoCommerce/vc-platform/blob/ddce0c966f011c9e33dfb2f2a6a85bf789b4ab1f/src/VirtoCommerce.Platform.Web/Extensions/ServiceCollectionExtensions.cs#L18
I've got a .NET 8/C# 12 project with nullable references enabled and when I use BuilderGenerator on a class that has properties with nullable reference types, the generated builder becomes...