API/CodeSamples/1-Million-Record-View.md
... ...
@@ -8,8 +8,9 @@ Below is the SQL sample to create a View with 1 million records using the Northw
8 8
## What To Change
9 9
10 10
11
+
12
+DECIMAL(18,6) to NUMERIC(22,8)
11 13
```c#
12
-DECIMAL(18,6) to NUMERIC(22,8):
13 14
List<KeyValuePair<string, string>> typeOverrides = AdHocContext.Driver.NativeTypesOverrides;
14 15
for (int i = 0; i < typeOverrides.Count; i++)
15 16
if (typeOverrides[i].Key == "Decimal")