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
What steps will reproduce the problem?
1. Create table with column named 'Count' of type 'Int64'
2. Use it in any part of the query
Example
[Table]
class Foo
{
[Column]
public string Bar;
[Column]
public long Count;
}
var count = (from f in db.Foo
where f.Bar == "Fred"
&& f.Count > Convert.ToInt64(0L)
select f).FirstOrDefault();
What is the expected output? What do you see instead?
If used in where predicate:
The binary operator GreaterThan is not defined for the types 'System.Int32' and 'System.Int64'.
(see dblinq-stack.txt)
What version of the product are you using? On what operating system?
DbLinq: 0.20.0.0
Original issue reported on code.google.com by [email protected] on 19 Feb 2012 at 9:43
Original issue reported on code.google.com by
[email protected]
on 19 Feb 2012 at 9:43Attachments:
The text was updated successfully, but these errors were encountered: