我想用SQL Server生成XML。
我写了这个:
Select CUV_CAPA
from dbo.EQT
FOR XML PATH('Table1'), Root('SomeRoot'), TYPE
结果是:
<SomeRoot>
<Table1>
<CUV_CAPA>600.00000000</CUV_CAPA>
</Table1>
<Table1>
<CUV_CAPA>50.00000000</CUV_CAPA>
</Table1>
</SomeRoot>
我希望在C#应用程序中使用此数据后,由于我的区域设置为,
而不是.
生成XML时,如何获得正确的小数点分隔符?