fixe l'execution (apparemment)

This commit is contained in:
2018-03-26 21:31:20 +02:00
parent 8fbe56c67e
commit b1e7022a3f
6 changed files with 32 additions and 20 deletions

View File

@ -2,10 +2,8 @@ namespace Yavsc.Server.Helpers
{
public static class DbHelpers
{
static string _connectionString = null;
public static string ConnectionString {
get { return _connectionString = null; }
set { _connectionString = value; }
}
// 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
public static string ConnectionString = null;
}
}