Fix refresh display status

This commit is contained in:
Samuele Locatelli
2023-11-09 15:41:10 +01:00
parent e61a512647
commit e32600f6d3
13 changed files with 135 additions and 73 deletions
+1 -1
View File
@@ -782,7 +782,7 @@ namespace MP.Data.Controllers
var OnlyUnused = new SqlParameter("@onlyUnused", onlyUnused);
dbResult = dbCtx
.DbSetODLExp
.FromSqlRaw("EXEC stp_ODL_getByIdx @IdxOdl, @onlyUnused", IdxOdl, onlyUnused)
.FromSqlRaw("EXEC stp_ODL_getByIdx @IdxOdl, @onlyUnused", IdxOdl, OnlyUnused)
.AsNoTracking()
.ToList();
}