shiwei.liang@volosoft.com
Hi,
Ok, can you try create a new project to reproduce the problem and share it?
It will be fixed in the next patch release
Error CS7036 There is no argument given that corresponds to the required parameter 'entity' of 'EntityCreatedEto<ABCEto>.EntityCreatedEto(ABCEto)
For example:
new EntityCreatedEto<UserEto>(new UserEto
{
.....
});
Hi,
ABP predefined events based on EFCore entity tracking. there will be no entity tracking when you use stored procedures, so you can't automatically publish events.
So you need to publish the event manually
but how do we append EventName with .Created or .Updated in the ETO
You can consider using predefined events:
await _distributedEventBus.PublishAsync(
new EntityCreatedEto<XXX>
{
}
Hi,
You can check the document: https://docs.abp.io/en/commercial/latest/themes/lepton-x/angular#general-settings
And you can use the ABP suite to download the leptonxtheme source code to know the component details.
Could you share the commercial account(username&password) with me? shiwei.liang@volosoft.com
Hi,
You should custom the layout: https://docs.abp.io/en/commercial/latest/themes/lepton-x/how-to-use-lepton-x-components-with-angular-custom-layout
You can use ABP suite to download the LeptonXTheme source code to know the layout details.
Maybe our custom guid isn't right?
Did you customize the id? You need to use abp to generate the GUID for you.
BTW, could you share your commerical account with me? shiwei.liang@volosoft.com I will check it.