7 angular .net core
its the latest version
Hello, in the angular solution, all of the grids that are generated have paging. Is there a simple way to configure a grid to display all rows, and not use paging?
Thanks
I am still having the issue. I have posted this to gitHub. https://github.com/aspnetzero/aspnet-zero-core/issues/2565
Using your suggested technique did not resolve the issue. Same error.
The unit test browser only lists [AppName].Test.Base. The rest of the tests are not discovered. The same solution opened on a PC running VS2019 has no problem displaying the full list of tests.
Interestingly, if you execute "dotnet test" from the terminal all 100+ tests run. It just appears that Visual Studio will not display them. Is anyone else successfully running test from Visual Studio for mac?
Thanks
Hello,
I use LinqPad as a rapid prototyping tool. There latest version 6 will support .net core. https://www.linqpad.net/LINQPad6.aspx
I would like to use linqpad to "talk" to my DLLs. I am executing the following code.
void Main()
{
var myService = IocManager.Instance.Resolve<LoadsAppService>();
}
and getting the following error.
ComponentNotFoundException: No component for supporting the service Orca.LogisticsDomain.LoadsAppService was found
Any help to get me talking with linqpad would be much appreciated!
Hello,
I'm using ASP.Net Core and Angular.
I am attempting to make a master detail component for my business object called Company. A single company has a collection of Contacts associated.
I have modified the power tools generated company edit page, and have implmented the ngb tabset control, and put the company info on the first tab, and then created a second tab where I have inserted the power tools generated Contacts component.
The issue i am running into, is that when I attempt to create a new contact and click the "Create New Contact" button, it closes the Company Modal immediatley (it also fires a sweetalert indicating that it saved the company record.). Is there something that I need to change in reference to the modals to be able to launch a modal from a modal?
Thanks!
im using the Angular/CORE project. I notice that the metronic quick-search.js has been included in the base solution. can you provide a tutorial on implementing the quick search?
thanks
Update! I fixed my problem.
I am using Azure Dev ops for CI\CD. Our build pipleline was using NPM Install, it was working, but all of a sudden quit last week. After removing the NPM Install step and replacing it with YARN (In Preview). The resulting container images starting working. I presume NPM Install was not accuratly resolving the dependencies.