Hi @hi.wujj,
What is the version of Volo.Abp.Commercial.SuiteTemplates
package in your project? It should match the ABP Suite version.
Hi @mbuthiagrg,
How did you fill the namespace
, enum name
and enum location
fields?
It would be better if you choose the enum cs file using file picker.
Hi Cellero,
As you said, this is not supported by Abp Suite.
As a work around I create AppUserId as a string property
This may meet your requirements ıf you only need to keep the user's Id in your entity. (A Guid property would be better btw)
There is also an article that may inspire you: https://alexbierhaus.medium.com/abp-io-navigation-property-for-identityuser-abpuser-218b15aa711c
Hi @ccernat, We are sorry for the late response.
First of all, please delete this github repository. Your nuget api key is exposed there https://github.com/RelevanceRo/TestChatModule/blob/master/NuGet.Config This is not allowed.
Why the public website is an MVC Razor pages app if the template is Blazor wasm? Is it planned to update the ABP Suite to generate the public website with the same tech stack as the back-end app?
Blazor wasm is for single-page backend applications and not suitable for public websites.
ABP Suite should have an options to disable SaaS / Tenancy from the UI. The SaaS / Tenancy is really a small niche of application developed with ABP Framework.
We may consider disabling multi-tenancy on project creation. I'll create an issue about that.
Why after I disable multitenancy I still get in the Administration menu SaaS / Tenant sections? How can I actually remove completely those sections from the administration menu?
You have to remove the Saas module from the solution (csproj & module.cs files).
We'll reply the question related with Chat module in a short time.
Hi @PedroCadevilla,
This level of complexity is not supported yet. However, you can change the generated code per your requirements and achieve the goal faster.
Hi,
You can change the generated *.cshtml
files to change the modal's appearance.
we want to display [label & field] in same row. is it possible in crud operations ?
You can use suppress-label
to remove the label.
<abp-input asp-for="@Model.MyModel.Name" suppress-label="true"/>
and then add the label and field manually into a row:
<div class="row">
<div class="col col-3">
<label for="MyModel_Name">Name</label>
</div>
<div class="col col-9">
<abp-input asp-for="@Model.MyModel.Name"/>
</div>
</div>
Hi,
Have you checked the https://docs.abp.io/en/commercial/latest/modules/chat#2-manual-installation document?
(Blazor Wasm is not referenced in the SignalR section but it is the same as angular installation)
Was the project's abp version 6.0.2 when you created it, or did you upgrade it from an older version? If so, have you build the project after the upgrage?
That's correct, generated with the command abp new MyService -t microservice-service-pro
What is the version of Volo.Abp.Commercial.SuiteTemplates
package in *.Domain.Shared
project?