Hi @malfaqeeh48, can you check this community article? In this community article basically described how you can integrate the Synfusion components into your Blazor.Server application.
Hi @richward, temporal tables is an EF Core 6 feature as you've mentioned. So you need to upgrade your project to v5.0.0-rc.1 to be able to use it.
Follow the migration guide documentations to upgrade your project v4.4.0 to v5.0.0-rc.1.
Hi @AndrewT, Tenant/User impersonation is available for all project types except Blazor WASM because of the limitations.
You're welcome :)
Hi @easonyang,is there AbpLicenseCode
key in your appsettings.secrets.json
file?
Hi @LawrenceKwan, I will try and write you back asap.
Hi @serdar.genc@talentra.net, if you need to update the jquery version to 3.6.0, you can add a resolutions
section to your package.json file and specify the version of the package you want. Then run the yarn install && gulp
command on your terminal.
For more info about resolutions system of yarn, see here
{
"name": "Acme.BookStore",
"dependencies": {
//...
}
"resolutions": {
"jQuery": "3.6.0",
}
}
I will try your instruction.
After following the steps, you can close the question if it works, if you still got problem please don't hesitate to write back.
Hi @mc86, I watched your video and I noticed your ABP Suite and ABP project versions are different. (Suite runs in v5.0.0-rc.1 and your project created in v4.4.4)
( A screenshot from your video, 4:05) It used the cached template. (v4.4.4)
Please apply these steps:
1-) Ensure you've upgraded both CLI and Suite versions to 5.0.0-rc.1.
dotnet tool update Volo.Abp.Cli -g --version 5.0.0-rc.1
dotnet tool update Volo.Abp.Suite -g --version 5.0.0-rc.1
2-) Delete the microservice-pro template for v5.0.0-rc.1, if you've created yesterday. (Because we've updated ms-pro template for Blazor UI yesterday.)
(Delete this zip file: %UserProfile%\.abp\templates\microservice-pro-5.0.0-rc.1.zip
)
3-) Create a microservice template via CLI or Suite.
CLI:
abp new <solution name> -t microservice-pro -u blazor --preview
Don't forget to select "Preview" checbox.
4-) Then click the "Add an existing solution" button on homepage of Suite, and fill the input with your product-service path.
5-) Then click "Ok" button, and generate CRUD pages for an entity.
6-) Finally, click the "Save and generate" button and generate CRUD pages for your product-service.
After you've generated CRUD pages for your product-service, you will get the following error on your Blazor UI.
We've created internal issues for these problems and they will be fixed in the next release.
error CS0115: 'Books.OnInitializedAsync()': no suitable method found to override
For fix this problem, open your new generated file (Book.razor.cs in our case) change the namespace of the generated file.
Namespace should be MySptDemoForBz5001.ProductService.Blazor.Pages.ProductService
(add the folder name to end of the current namespace)
CreateBookAsync
and UpdateAsync
methods like in the image below.@mc86 I got your mail, I will watch the video and write you back asap.