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
..
myObject.Id = 100;
DB.Query(d => d.ObjId == myObject.Id);
must be equivalent to :
DB.Query("WHERE [ObjId] = @0", myObject.Id) or DB.Query("WHERE [ObjId] = 100")
but it convert to :
DB.Query("WHERE [ObjId]= Id")
??
The text was updated successfully, but these errors were encountered:
It was fixed in v1.11.0 of that library last month. This library only requires StaTypPocoQueries >= 1.9, so you'll need to directly add a reference to 1.11.0 in order to get the new behavior. I can reproduce the behavior you see in 1.9, but it works for me in 1.11.
..
myObject.Id = 100;
DB.Query(d => d.ObjId == myObject.Id);
must be equivalent to :
DB.Query("WHERE [ObjId] = @0", myObject.Id) or DB.Query("WHERE [ObjId] = 100")
but it convert to :
DB.Query("WHERE [ObjId]= Id")
??
The text was updated successfully, but these errors were encountered: