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

Activities of "crumbdav"

Im getting this error in a fresh install of aspnetzero jQuery 8.4

I tried it twice with the same errors. I believe there's a DLL conflict somewhere.

Any guidance?

Thanks,

System.TypeLoadException: 'Method 'Use' in type 'Abp.AspNetCore.Threading.HttpContextCancellationTokenProvider' from assembly 'Abp.AspNetCore, Version=5.4.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.'

This exception was originally thrown at this call stack: System.Reflection.RuntimeAssembly.GetExportedTypes() Castle.Core.Internal.ReflectionUtil.GetAvailableTypes(System.Reflection.Assembly, bool) Castle.Core.Internal.ReflectionUtil.GetAvailableTypesOrdered(System.Reflection.Assembly, bool) Castle.MicroKernel.Registration.FromAssemblyDescriptor.SelectedTypes.AnonymousMethod__5_0(System.Reflection.Assembly) System.Linq.Enumerable.SelectManySingleSelectorIterator<TSource, TResult>.MoveNext() Castle.MicroKernel.Registration.FromDescriptor.Castle.MicroKernel.Registration.IRegistration.Register(Castle.MicroKernel.IKernelInternal) Castle.MicroKernel.Registration.BasedOnDescriptor.Castle.MicroKernel.Registration.IRegistration.Register(Castle.MicroKernel.IKernelInternal) Castle.MicroKernel.DefaultKernel.Register(Castle.MicroKernel.Registration.IRegistration[]) Castle.Windsor.WindsorContainer.Register(Castle.MicroKernel.Registration.IRegistration[]) Abp.AspNetCore.AbpAspNetCoreConventionalRegistrar.RegisterAssembly(Abp.Dependency.IConventionalRegistrationContext) ... [Call Stack Truncated]

Greetings; This message is really meant for fellow users.

Im a relatively new developer to ABPZero and have noticed the Webhooks feature. It seems like a nice feature.

But Im trying to wrap my head around the business cases and what possibilites it may hold for me. And of course what requirements on the other end for me to integrate on my end.

So, to the group. What are the use/business cases you could/potentially could see for using web hooks? What are the possibilites? How are you implementing Webhooks in your application? Give us noobs some inspiration!

Also, what is needed on the 'host' end? Just a rest api endpoint? A rest api endpoint that only returns one record?

Thanks in advance,

--Dave

Greetings; FYI: I tried to use your search functionality but kept returning 500 error.

I am working in the Web.Public project and trying to establish my links within the FrontEndNavigationProvider.cs file

For the life of me I can't figure out what is going on. The order of the links as displayed on the website isn't the same as the order ot he MenuItemDefinitions

For example, in the code the order is (1)Home, (2)About, (3) Multiline example

but when it's run it's listed as About - Home - Multiline example

What's attributing to the order of these links?

Any guidance is appreciated,

--Dave

Here is the order on the website navigation bar

[Contact us]  [How]  About  Home  Products and Services

Here is the code:

frontEndMenu

            //HOME
            .AddItem(new MenuItemDefinition(
                FrontEndPageNames.Home,
                L("HomePage"),
                url: ""
                )

            //ABOUT
            ).AddItem(new MenuItemDefinition(
                FrontEndPageNames.About,
                L("AboutUs"),
                url: "About"
                )
            ).AddItem(new MenuItemDefinition(
                FrontEndPageNames.About,
                L("Products"),
                url: "Products"
                )
              ).AddItem(new MenuItemDefinition(
                FrontEndPageNames.Products,
                L("How"),
                url: "How"
                )
               ).AddItem(new MenuItemDefinition(
                FrontEndPageNames.How,
                L("ContactUs"),
                url: "ContactUs"
                )
            );
            
            

Greetings;

If I have a field in a (SQL Server) database as a VarBinary(MAX), what strategies could you recommend for implementing this using the AspNetZero PowerTools feature.

I've read that it's similar to a byte[], and I know you have a byte data type, wasn't sure if it's a byte or a byte[].

Many thanks (from a beginner),

--Dave

Are there any examples of integrating data you have developed in the 'main' application into the Web.Public application?

I have created entities that I want to display some data on the Web.Public application.

Guidance appreciated,

--Dave

On the page:

https://docs.aspnetzero.com/documents/aspnet-core-angular/latest/Extending-Existing-Entities

it states: Note: The UI part of this document is written for ASP.NET MVC 5.x version of ASP.NET Zero. Document will be updated for ASP.NET Core soon.

Has the ASP.NET core section been completed?

Guidance appreciated,

--Dave

Greetings,

As a newbie, im trying to go through the documentation to understand the concept of extending entities for my ASP.NET MVC Core / Jquery application.

Im using the documentation located at:

https://docs.aspnetzero.com/documents/aspnet-core-mvc/latest/Extending-Existing-Entities

As Im developing a MPA, im confused by the statement" This was for SPA (Single Page Application with AngularJS). It's similar for MPA side. Just open .Web\Areas\Mpa\Views\Users\index.js and add Address field to the table as like Surname."

i cant seem to find this file as there isnt a .Web application, but there is a .Web.Core , .Web.Host, and a .Web.MVC application. I did a text search for some content and couldnt find any related text.

Any guidance is greatly appreciated.

Thanks,

Dave

Greetings;

I originally posted issues with my test download of aspnetzero with not being able to get the modal dialog for add 'item' after creating the entity with the PowerTools feature. Per your recommendation, I waited a couple of days and then downloaded a newer copy of the Visual Studio Power Tool. I was able to get it to work.

But alas, I have downloaded my 'permanent' copy of my application, and I now can't get the interface to fully run. I've tried three different times, starting from scratch to no avail.

Im not sure what information to provide to you. When I ran the RadTool build process, there were no errors or warnings. I will try and document fully every step I took to build the application.

ASP.NET MVC Core 2.2 JQuery application. Visual Studio 2017, Power Tools version as of 04/08/2019.

  1. Unzip the file to a directory
  2. Open the Web Solution in Visual Studio
  3. For each of the MVC and Public projects, I restored the npm packages
  4. for each of the MVC and Public projects, I went into the directory, and in DOS I ran two commands: yarn and npm run create-bundles
  5. I updated the appsettings.json in both the Web and Public projects to my local SQL Server Instance
  6. In the visual studio Package Manager, I ran the update-database -verbose command on the EntityFrameworkCore project to build the database
  7. I ran the application using IISExpress and was successfully able to log in.

I created an entity and built it with no obvious errors or warnings.

When I go into the application (Host) and go into the interface, when I click on the "Create new <object>" nothing happens.

Can you provide any guidance on what other information you need?

Any guidance is greatly appreciated,

--Dave

https://docs.aspnetzero.com/documents/aspnet-core-mvc/latest/Development-Guide-Rad-Tool

As people seem to be saying left-and-right, there's really incomplete documentation. Particularly covering very pertinent functionality.

In this case Im reviewing your Rad Tool for ASP.NET MVC / JQuery. In the URL reference above, the image shows Drop Down / Selection boxes for "Body Type" and "Is Available"

How did you use the Rad Tool to build the drop-down functionality?

Any guidance is greatly appreciated,

--Dave

Greetings;

New User and Beginner Developer and have created an simple object using the Rad Tool / Power Tool. I was able to successfully build the object and do the database migration. When I compiled and went into the object, it displayed the interface, but when I clicked on the Create New button, nothing happened.

Im not sure what to provide to you to help with the problem solving.

Application Type: ASP.NET MVC Core / JQuery (latest) as of 04/07/2019

-> AnalyticObjectsAppService.cs is being generated. -> IAnalyticObjectsAppService.cs is being generated. -> AnalyticObjectConsts.cs is being generated. -> CreateOrEditAnalyticObjectDto.cs is being generated. -> AnalyticObjectDto.cs is being generated. -> GetAllAnalyticObjectsForExcelInput.cs is being generated. -> GetAllForLookupTableInput.cs is being generated. -> GetAllAnalyticObjectsInput.cs is being generated. -> GetAnalyticObjectForViewDto.cs is being generated. -> GetAnalyticObjectForEditOutput.cs is being generated. -> AnalyticObject.cs is being generated. -> AnalyticObjectsExcelExporter.cs is being generated. -> IAnalyticObjectsExcelExporter.cs is being generated. -> AppPermissions.cs is being modified. -> AppAuthorizationProvider.cs is being modified. -> EntityHistoryHelper.cs is being modified. -> EvalDemoDbContext.cs is being modified. -> CustomDtoMapper.cs is being modified. Running add-migration... Done. To undo this action, use 'ef migrations remove' Running update-database... Applying migration '20190407070148_Added_AnalyticObject'. Done. -> AnalyticObjectsController.cs is being generated. -> _CreateOrEditModal.cshtml is being generated. -> _CreateOrEditModal.js is being generated. -> CreateOrEditAnalyticObjectViewModel.cs is being generated. -> Index.cshtml is being generated. -> Index.js is being generated. -> AnalyticObjectsViewModel.cs is being generated. -> AppNavigationProvider.cs is being modified. -> AppPageNames.cs is being modified. Warning : File not found => ..\src\RadTool.EvalDemo.Web.Mvc\bundleconfig.json -> EvalDemo.xml is being modified.

Code generation is complete. Press ENTER to exit...

Showing 1 to 10 of 10 entries