You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/CodeGenerators/Models/StoredProcedureGenerator.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -62,9 +62,9 @@ public async Task<SourceText> GetStoredProcedureExtensionsCodeAsync(Definition.S
62
62
}
63
63
64
64
// Determine if any stored procedure in this group actually produces a model (skip pure scalar non-JSON procs)
65
-
// Unabhängig vom Modus: JSON Procs erzeugen ausschließlich Raw Methoden (Task<string>), niemals typed Models oder Deserialize Methoden.
66
-
vargenMode=Environment.GetEnvironmentVariable("SPOCR_GENERATOR_MODE")?.Trim().ToLowerInvariant()??"dual";// read but no behavioral effect for JSON typing
67
-
boollegacyRawJsonOnly=true;// force raw-only for JSON always
65
+
// Unabhängig vom Modus: JSON Procs erzeugen ausschließlich Raw Methoden (Task<string>), niemals typed Models oder Deserialize Methoden.
66
+
vargenMode=Environment.GetEnvironmentVariable("SPOCR_GENERATOR_MODE")?.Trim().ToLowerInvariant()??"dual";// read but no behavioral effect for JSON typing
67
+
boollegacyRawJsonOnly=true;// force raw-only for JSON always
0 commit comments