fd0936789bd86f2b292ff515bcb19c51c9f82853
API/CodeSamples/1-Million-Record-View.md
| ... | ... | @@ -8,7 +8,7 @@ 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 | -'''C# |
|
| 11 | +'''c# |
|
| 12 | 12 | DECIMAL(18,6) to NUMERIC(22,8): |
| 13 | 13 | List<KeyValuePair<string, string>> typeOverrides = AdHocContext.Driver.NativeTypesOverrides; |
| 14 | 14 | for (int i = 0; i < typeOverrides.Count; i++) |
| ... | ... | @@ -18,7 +18,7 @@ for (int i = 0; i < typeOverrides.Count; i++) |
| 18 | 18 | break; |
| 19 | 19 | } |
| 20 | 20 | AdHocContext.Driver.NativeTypesOverrides = typeOverrides; |
| 21 | -... |
|
| 21 | +''' |
|
| 22 | 22 | |
| 23 | 23 | ##SQL Server |
| 24 | 24 |