yavsc/Yavsc.Server/Helpers/DbHelpers.cs

9 lines
437 B
C#
Raw Normal View History

2018-03-26 19:27:29 +02:00
namespace Yavsc.Server.Helpers
{
public static class DbHelpers
{
2018-03-26 21:31:20 +02:00
// FIXME BUG [fr] DependencyInjection Pourquoi ce champ ne pourrait pas devenir une propriété ?
// : casse à l'execution d'un controlleur, se plaignant d'une valeur nule
2018-04-13 12:55:58 +02:00
public static string ConnectionString = "Server=Your-Server-Adress;Port=5432;Database=YourDadabaseName;Username=YourDatabaseUserName;Password=YourPassword;";
2018-03-26 19:27:29 +02:00
}
2018-04-13 12:55:58 +02:00
}