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/FSharp.Data.Runtime.Utilities/StructuralInference.fs
+60Lines changed: 60 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -623,3 +623,63 @@ let inferPrimitiveType
623
623
[<Obsolete("This API will be made internal in a future release. Please file an issue at https://github.com/fsprojects/FSharp.Data/issues/1458 if you need this public.")>]
624
624
letgetInferedTypeFromString unitsOfMeasureProvider inferenceMode cultureInfo value unit =
625
625
inferPrimitiveType unitsOfMeasureProvider inferenceMode cultureInfo value unit
626
+
627
+
#if NET6_0_OR_GREATER
628
+
/// Replaces DateOnly → DateTime and TimeOnly → TimeSpan throughout an InferedType tree.
629
+
/// Used in design-time code when the target framework does not support these .NET 6+ types.
0 commit comments