Accessing non-existent property 'padLevels' of module exports inside circular dependency

I just `> npm i -g phonegap@9.0.0` and `> phonegap --version`. It says not only `9.0.0` but also: ``` (node:18392) Warning: Accessing non-existent property 'padLevels' of module exports inside circula...

6 Nov at 11:15

ServiceStack PocoDynamo C# Query on Nested object property

Below is my dynamodb row object structure. Status, Calls are 1st level columns and Inside Calls, i have nested data. ``` Record ->Status : 0 ->Calls -[0]:CapIndex : 5 ...

5 Nov at 12:9

Entity Framework Core - No design-time services were found

I have a pretty basic migration file. I'm executing `dotnet ef database update --verbose` in the Package Manager Console window and nothing is getting generated in SQL Server. The final lines of outpu...

4 Nov at 22:30

Plugin 'org.springframework.boot:spring-boot-maven-plugin:' not found

I'm facing an error in my file given below: ``` Plugin 'org.springframework.boot:spring-boot-maven-plugin:' not found ``` Below is my pom.xml : ``` <?xml version="1.0" encoding="UTF-8"?> <project xm...

8 Feb at 11:0

404 not found error using ServiceStack ServerEventsClient with Pipedream SSE API

I'm using [Pipedream](https://pipedream.com/) as a data source which provides event data via an SSE API. As per the instructions [here](https://docs.servicestack.net/csharp-server-events-client), I'm ...

Why does Dapper need a reference to the transaction when executing a query?

Just looking through this tutorial: [https://www.davepaquette.com/archive/2019/02/06/managing-transactions-in-dapper.aspx](https://www.davepaquette.com/archive/2019/02/06/managing-transactions-in-dapp...

31 Oct at 10:2

Asp.net core keep using the expired certificate

Recently, my localhost certificate is expired, I have gone to "sertmgr.msc" remove all localhost certificate and restart the VS and add a new localhost certificate to windows. But when am I running my...

31 Oct at 03:29

System.TypeLoadException: Method 'Create' in type 'MySql.Data.EntityFrameworkCore.Query.Internal.MySQLSqlTranslatingExpressionVisitorFactory'

I'm trying to add a new user to the database with the following code: ``` public async void SeedUsers(){ int count=0; if(count>0){ return; } else{ string email="jujusaf...

Add comments to records - C# 9

I'm looking for a way to add comments on record properties, in C# 9 When I try this code : ``` public record Person { /// <summary> /// Gets the first name. /// </summary> public strin...

5 May at 17:44

ServiceStack: Async version of 'HostContext.AppHost.ExecuteMessage'?

[As answered here](https://stackoverflow.com/a/56672465/178143), its enough to return a Task to make a ServiceStack service method async. If I manually invoke a Service, as [described here](https://st...

30 Oct at 15:42

net 5.0 Cannot determine the frame size or a corrupted frame was received

I want to try net5.0 since it's in rc2, and I've encountered a strange issue. I've created a default WebApi in net5.0. I didn't touch anything, I just clicked run (in kestrel, not ISS) and the Swagger...

23 Apr at 08:20

ServiceStack RedisMqServer: No way to add or remove channels in runtime?

My, already "legacy" by now, implementation of a pub/sub solution using ServiceStack quickly ran out of clients, when it reached the 20 client limit. We do something like: ``` _redisConsumer = MqClien...

Strange NullReferenceException when using ServiceStack.OrmLite async API

I keep getting a NullReferenceException when using ServiceStack.ORMLite's async API. I don't really know where to go from here and I have to admit I'm going half insane What I know is that switching `...

Unable to resolve dependency tree error when installing npm packages

When trying to install the npm packages using `npm i` command, I am getting the following exception: [](https://i.stack.imgur.com/x8N3W.png) I have tried reinstalling the Node.js package and setting t...

11 Aug at 09:28

ServiceStack - how to add custom typescript decorators?

I'm generating typescript dtos via C# models under ServiceStack. I'm hoping to use [typestack/class-validator](https://github.com/typestack/class-validator) which operates by evaluating several decora...

28 Oct at 15:7

ServiceStack: Reinstate pipeline when invoking a Service manually?

As a follow-up to [this question](https://stackoverflow.com/questions/64560997/servicestack-messaging-api-can-it-make-a-broadcast), I wanted to understand how my invoking of a Service manually can be ...

10 Nov at 00:43

ServiceStack Messaging API: Can it make a broadcast?

As I have [previously](https://stackoverflow.com/questions/63441969/seeking-an-understanding-of-servicestack-redis-iredisclient-publishmessage-vs-i) [mentioned](https://stackoverflow.com/questions/634...

How to Polyfill node core modules in webpack 5

webpack 5 no longer do auto-polyfilling for node core modules. How to fix it please? > BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the...

25 Aug at 18:57

Using C# 9 records "with" expression can I copy and add to new derived instance?

Suppose I have the following: ``` public record Settings { public int Setting1 { get; init; } } public record MoreSettings : Settings { public string Setting2 { get; init; } } ... var settings ...

27 Oct at 15:14

Upload string to Azure Blob

I have had a look at this following code to upload a string to azure blob. my task requirement does not allow me to store the string as a file. ```csharp static void SaveTextAsBlob() { var s...

2 May at 02:46

Unity - communicating with clientside Javascript and ajax. How to pass data back to the webpage from unity?

What I am really asking is this; if there are dependencies which are impossible to compile into the unity build, is there a way of still calling them from within the unity and simply using the scripts...

26 Oct at 08:40

ServiceStack automatic dispose

I'm new to ServiceStack and I was trying to use it. I have a question to do: from the documentation I read that "". What does it mean? Below you can see my example code: in this case, I was trying to ...

25 Oct at 09:45

How to include ValidationError.CustomState in ResponseStatus.Meta?

I have the following code in one of my validators: ``` RuleFor(foo => foo) .Must(foo => foo != null) .WithState(bar => new { Baz, Qux }); ``` Then in my service I have this: `...

23 Oct at 07:38

The argument type 'Function' can't be assigned to the parameter type 'void Function()?' after null safety

I want to achieve to make a drawer with different items on it, so I am creating a separate file for the `DrawerItems` and the with the constructor, pass the data to the main file. But I get the follow...

31 Oct at 00:59

Java.Lang.NoSuchMethodError: 'No static method checkBuilderRequirement

After updating to Xamarin.Forms 4.8 i get this error when application starts: ``` Java.Lang.NoSuchMethodError: 'No static method checkBuilderRequirement(Ljava/lang/Object;Ljava/lang/Class;)V in class ...

19 Oct at 13:28