We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you write: #isEqual<A, 3, sql {...}>, you will not get correct SQL expected, this is because following code:
#isEqual<A, 3, sql {...}>
sdmap/sdmap/src/sdmap/Macros/Implements/RuntimeMacros.cs
Line 201 in 4b69a10
We can do workaround by using decimal typed property instead of int property: decimal A int A
decimal A
int A
The text was updated successfully, but these errors were encountered:
1465532
No branches or pull requests
If you write:
#isEqual<A, 3, sql {...}>
, you will not get correct SQL expected, this is because following code:sdmap/sdmap/src/sdmap/Macros/Implements/RuntimeMacros.cs
Line 201 in 4b69a10
Using double.Equals(int) to compare double and int, this will always returns false (as in reference source):
https://referencesource.microsoft.com/#mscorlib/system/double.cs,148
We can do workaround by using decimal typed property instead of int property:
decimal A
int A
The text was updated successfully, but these errors were encountered: