DataColumn.Expression Power
Posted
by Graham
on Stack Overflow
See other posts from Stack Overflow
or by Graham
Published on 2009-06-11T18:14:16Z
Indexed on
2010/05/10
21:04 UTC
Read the original article
Hit count: 281
ADO.NET
|datacolumn
the following code
Dim dc = New DataColumn(name, GetType(Double), "[col1] ^ [col2]")
produces the following error:
The expression contains unsupported operator '^'.
Is this right, is the power operand not support in datacolumn expressions???
Anyone have an idea how i'd write this?
© Stack Overflow or respective owner