maliming
maliming
hi 1> We introduce a new feature on 8.0 https://github.com/abpframework/abp/blob/dev/docs/en/Repositories.md#read-only-repositories-behavior-in-entity-framework-core 2> No ideas.
I remember it's already fixed in the latest 0.9.26 Thanks.
hi You can publish your app to a local folder and test it again.
hi First, you can use `using` to disable the filter in middleware. `dataFilter.Disable` will be global and also affect background jobs... ```cs if (shouldDisableMultiTenancy) { using(dataFilter.Disable()) { await _next(context); }...
hi @ViatorLife The [template projects](https://github.com/abpframework/abp/blob/dev/templates/) are no longer maintained. You can use Studio to create a new project. https://abp.io/studio
Thanks. I will check the Studio templates.
hi I checked. The tiered or CMSKit project created by Studio/CLI is no problem. Thanks.
We can't convert all types to query strings,formdata, or path correctly. So we have provided `IObjectToQueryString/IObjectToFormData/IObjectToPath` for developers to implement themselves. Add a class that implements the `IObjectToQueryString`, build the...
> because HttpActionParameterHelper.FindParameterValue also couldn't properly retrieve the value. I will try to reproduce it to resolve the problem.
Adding `IObjectToQueryString` can solve this case. ```cs var input = new DynamicEntityListRequestDto() { EntityName = "Person", Sortings = new List() { new DynamicQuerySortArgs() {PropertyName = "Name", IsDescending = false}, new...