We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f29009 commit 7528507Copy full SHA for 7528507
dotnet/src/dotnetcore/GxClasses.Web/Middleware/GXRestServices.cs
@@ -92,6 +92,7 @@ internal void Initialize()
92
if (restSDT != null)
93
{
94
restSDT.Sdt.Localize(context);
95
+ restSDT.Sdt.context = context;
96
return restSDT.InternalSdt;
97
}
98
else
@@ -104,9 +105,10 @@ internal void Initialize()
104
105
if (restModel != null)
106
107
restModel.LoadCollection(internalModel);
- foreach(var item in internalModel)
108
+ foreach(GxUserType item in internalModel)
109
110
item.Localize(context);
111
+ item.context = context;
112
113
114
0 commit comments