Closed mdissel closed 5 years ago
Yes, i've read the blog post (a long time ago), but it's 9 month old, is the advice still to use the mature asp.net zero framework?
I recommend you to use Zero.
I am already using ASPNetBoilerplate and am very excited to know the release of abp.io. I am looking for a sample code to develop plug-in module using abp.io. Basically the requirment is something below.
@cxs-mahendra would you like to make changes on specific pages or would you like to create a new module ?
Similar to this question https://github.com/abpframework/abp/issues/2006
@cxs-mahendra would you like to make changes on specific pages or would you like to create a new module ?
Actually Both....
@ismcagdas: Let me explain you the scenario in more detail. Lets say I have master screen (say product master) and a transaction screen say Goods Receipt. My application is being used by say 1000 tenants. My application is deployed on some cloud solution (say azure).
Now, Tenant 1, needs some custom logic to implement while saving the product. Tenant 2, needs to add some more fields in Goods Receipt (i.e. UI changes) and also wanted to change the logic of saving the Goods Receipt. Tenant 3, needs to add a button on product master and clicking on it opens up a new form.
I mean how can someone without having the source code of the main application can extend or modify the application that too for his tenant only.
I hope I am able to make myself clear.
Can all these be possible using abp.io. If yes, please help me guiding in the right direction. I am already a licensed user of ABP and now evaluting abp.io
@cxs-mahendra , use Zero. It's great and you can change things, it's not monolithic like abp.io.
Thanks for your recommendation. I know new modules can be added using IPlugInSource interface. But how can I change the business logic of existing module. Let's say there is a button in a form on my main application. How can I write my custom code on button click event. The code execution of button click could be My Custom Code Execution (i.e. Before Event) My main application click code execution My Customer Code Execution (i.e. After Event)
@cxs-mahendra both ABP.IO and AspNet Boilerplate doesn't provide any built in feature for that. So, you have to implement it yourself.
Hi,
I am referring to the following link : https://github.com/aspnetboilerplate/aspnetboilerplate/issues/1476#issuecomment-277330004
I downloaded the project from GitHub, Compile and rum, it runs successfully..
Now I am trying to run this as a plugin. So in the main application I did something like below: I removed the dependency of TodoModuleWebModule
[DependsOn(typeof(ModularTodoAppWebCoreModule))]
public class ModularTodoAppWebMvcModule : AbpModule
{
......
.......
And in the Startup.cs file, I did the following:
services.AddAbp
And in the folder C:\MyPlugIns, I put in all the compiled dll of ToDo Module.
When i tried to run this application now, it throws me the attached error. Could you please help me what is wrong that I am doing.
can anyone please help me resolving issue in my above post. Many thanks
hi @cxs-mahendra Can you create a new issue here? https://github.com/aspnetboilerplate/aspnetboilerplate/issues/new If possible, please provide the code or project to reproduce the problem, thank you
We are investigating the apb framework features for a new project (asp.net core). Is the advice (at this moment) to use the mature asp.net zero framework or the new abp.io framework? Is there a feature overview between the two frameworks?