How to access angular app outside localhost? Solution: ng serve –host 0.0.0.0 –disable-host-check
Updated on Kisan Patel
How to 404 Page not found page setup in Angular Routing? $ ng generate component notfound Next, open the src/app/app-routing.module.ts […]
Updated on Kisan Patel
Problem: How to implement auto scroll of chat messages in Angular? Solution The AfterViewChecked triggers every time the view was […]
Updated on Kisan Patel
Install the Microsoft.AspNetCore.Mvc.NewtonsoftJson package. Update Startup.ConfigureServices to call AddNewtonsoftJson. services.AddSignalR() .AddNewtonsoftJsonProtocol( options => options.PayloadSerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver() ); Source: https://stackoverflow.com/questions/37832165/signalr-net-core-camelcase-json-contract-resolver […]
Updated on Kisan Patel
Problem: How to remotely connect to .net core self hosted web api? External Network Access to Kestrel and IIS Express […]
Updated on Kisan Patel
Problem: How to find a string included between two characters? Looping through Regex Matches How to use Regex to get […]
Updated on Kisan Patel
Problem: How to Define multiple Foreign Key for the Same table in Entity Framework Code First. Solution: To achieve what […]
Updated on Kisan Patel
Problem: Why powershell does not run Angular commands? “execution of scripts is disabled on this system.” Solution: Step 1: Remove […]
Updated on Kisan Patel
Add the below code in StartUp.Configure public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, FinOsDbContext context) { …. var cultureInfo […]
Updated on Kisan Patel
Problem: I am using Entity Framework and having a problem with getting parent and child data that causes self-referencing loop. […]
Updated on Kisan Patel