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
Returns the value of this `SqlMoney` instance scaled by a ten-thousandth of a currency unit.
19
+
For example, if the current `SqlMoney` instance represents __2__ currency units, the
20
+
`ToSqlInternalRepresentation` method will return __20000__.
21
+
22
+
If this `SqlMoney` instance represents a null value (see <xref:System.Data.SqlTypes.SqlMoney.IsNull>), calling this method will throw a <xref:System.Data.SqlTypes.SqlNullValueException>.
23
+
24
+
```csharp
25
+
internallongToSqlInternalRepresentation();
26
+
```
27
+
28
+
## Remarks
29
+
30
+
> [!WARNING]
31
+
> This method is internal and is not meant to be used directly in your code. This API may not be available in future versions of .NET.
32
+
>
33
+
> Microsoft does not support the use of this method in a production application under any circumstance.
0 commit comments