Skip to content
Advertisement

An Error has occured during the migrations System.ArgumentNullException: Value cannot be null. (Parameter ‘connectionString’)

I have the following piece of code

JavaScript

In my Program.cs, I have the following

JavaScript

I did a publish on a CentOs7. When I am running my application using the command:

JavaScript

I have the following error:

JavaScript

I do not understand why is the value of my connection string null when I hardcoded directly it in the application.

What could be the issue?

Advertisement

Answer

The following line is incorrect:

JavaScript

Currently it is looking in the config for a connection string with the KEY “server=l…”.

If you are hardcoding, remove the config.GetConnectionString method and just pass in the string to UseMySQL:

JavaScript

Or, if doing in a more standard way, add the connection string to the configuration file with a key value pair and pass the key value eg:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement