Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "gryphon644"

Answer

I see now what happened! This implementation would only work with Elsa 2. The moment I upgraded the Elsa package I ran to the same issue.

Are you guys planning on updating the docs to Elsa 3 implementation?

Answer

Yeah thanks!

Answer

I followed this blog post but still can't resolve the issue. Added all these packages

Here is my error

Error CS1061 : 'IModule' does not contain a definition for 'UseEntityFrameworkCorePersistence' and no accessible extension method 'UseEntityFrameworkCorePersistence' accepting a first argument of type 'IModule' could be found (are you missing a using directive or an assembly reference?)

And here are my assembly references and implementation

using Elsa;
using Elsa.Server.Api;
using Elsa.Persistence.EntityFramework.SqlServer;
using Elsa.Persistence.EntityFramework.Core.Extensions;
using Microsoft.EntityFrameworkCore;
private void ConfigureElsa(IServiceCollection services)
		{
			services
				.AddElsa(elsa => elsa
					.UseEntityFrameworkCorePersistence(ef =>
						ef.UseSqlServer(_appConfiguration.GetConnectionString("Default")))
					.AddConsoleActivities()
					.AddHttpActivities(options => _appConfiguration.GetSection("Elsa:Server").Bind(options))
					.AddQuartzTemporalActivities()
					.AddJavaScriptActivities()
					.AddWorkflow<Startup>());



			// Elsa API endpoints.
			services.AddElsaApiEndpoints();
			services.Configure<ApiVersioningOptions>(options => { options.UseApiBehavior = false; });

			services.Configure<RouteOptions>(options => { options.LowercaseUrls = false; });

			// For Elsa Dashboard.
			services.AddRazorPages();

			// Remove ABP filter and add Elsa special filter
			services.PostConfigure<MvcOptions>(ReplaceResultFilter);
		}

Can I be sure that the implementation from the blog is not up to date? Does it still work for Elsa v3?

Question

Hi, I'm facing an issue while integrating Elsa following the blog tutorial https://docs.aspnetzero.com/en/aspnet-core-mvc/latest/Core-Mvc-Elsa-Integration Issue : .UseEntityFrameworkPersistence and .UseAutoMapper are not being resolved even though I installed all the needed nuggets.

I've looked around but still can't find the reason.

Would Appreciate any help

Hello there, I'm trying to implement a Dropzone UI but I keep seeing this error on my console about DropZone not being defined Here is my jquery code!

I would appreciate it if anyone could help, please.

$(document).ready(function () { Dropzone.autoDiscover = false; $("#kt_dropzonejs_example_1").dropzone({ url: "/App/Lists/UploadDocument/", uploadMultiple: false, paramName: "file", parallelUploads: 1, maxFiles: 1, headers: { "X-XSRF-TOKEN": abp.security.antiForgery.getToken() }, success: function (file, response) { $('#form').append(''); } }); });

Answer

Nice! Thank you

Question

Hi,

When should we expect support for .NET 8?

Gotcha! Thanks

Hi there, What would be the Consts if I was to switch the UI on my project from Metronic to Velzon (Angular)?

It worked after adding .ReverseMap();

Thanks

Showing 11 to 20 of 33 entries