I don't have any exception if you want I will share the logs
I am asking like below kind of code snippet.
ObjectExtensionManager.Instance.Modules()
.ConfigureElsa(Workflowdefinitions =>
{
identity.ConfigureUser(user =>
{
user.AddOrUpdateProperty<string>( //property type: string
"SocialSecurityNumber", //property name
property =>
{
//validation rules
property.Attributes.Add(new RequiredAttribute());
property.Attributes.Add(new StringLengthAttribute(64) { MinimumLength = 4 });
//...other configurations for this property
}
);
});
});
If I would like to extend WorkflowDefinitions, Workflowinstances tables by using ObjectExtensionManager.Instance.Modules(), will I be able, do it?
The reason for extending with additional columns is to store certain other details in the existing WorkflowDefinitions, Workflowinstances tables rather than creating a newly.
Hi,
Are you saying adding below line will create the Elsa related tables in the backend. .UseWorkflowRuntime(runtime => runtime.UseEntityFrameworkCore(ef => ef.UseSqlServer(connectionString)))
Does ABP Elsa pro does not generate the Elsa entities? Are you suggesting to use Elsa open source rather than ABP Elsa pro? If we use ABP elsa pro, then will we able to generate Elsa entities? if not, it stores in local storage. Am I right?
[maliming] said: hi
The Elsa Pro module doesn't contain any
Entitieshttps://abp.io/docs/latest/modules/elsa-pro
Can you check the code of https://abp.io/docs/latest/samples/elsa-workflows-demo
Thanks.
If Abp elsa pro won't generate the entities (workflowdefinitions, workflowinstances etc) , then where workflow and activity informations will store. will it store in in memory db? and will be lost when the application will restart?
Why AI bot is generating the answers saying workflowdefinitions, workflowinstances etc tables will generate with ABP Elsa pro?
If not ABP elsa pro, then should I try Elsa open source 3.x to generate the above entities?
Appreciate for the quick response
Should it be Volo.Abp.ElsaPro.Application.Contracts or Volo.Abp.Elsa.Application.Contracts
this is not solving the problem and seems like package reference are wrong
Hi
I already verified but unable to configure abp elsa pro with modular application. I require a step-by-step guidance to set up elsa with ABP modular api. Also I was looking at the documentation, through dbmigrator, Elsa will generate Workflowdefinition, workflowinstance tables under a db. How to achieve it?
In the meantime, please let me know how to get the suite logs and how do we regenerate these logs.
Please Replay Soon I am working on deadline