Lieven Cardoen
Lieven Cardoen
Next Update crashes because the x => x.Name == null will be translated to a Comparison.Is. As a consequence, in Update.cs, a InvalidOperationException is thrown saying 'Can't use a non-equality...
This SubSonic Update Query: ``` var db = new Edumatic3DB(); var qry = db.Update() .Set(x => x.Name == metaDataKeyBoolean.name) .Set(x => x.DefaultValue == metaDataKeyBoolean.defaultValue); if (metaDataKeyStructureId != -1) { qry.Set(x...
It isn't that the query is really translated wrong, but the selected columns get a AS Name1, RightId1. When iterating the reader, SubSonic searches for fields with Name and RightId......
Hi, When compiling classes with 1 thread, progPerc seems to be working. However, when compiling procedures with 4 threads, I'm not seeing progress percentages... Is that expected behavior? Thx, Lieven
Hi, when trying out progress_decrypt.py I'm getting an error: C:\Workspace\Python>python progress_decrypt.py oech1::deadbeefcafe Traceback (most recent call last): File "C:\Workspace\Python\progress_decrypt.py", line 28, in src = src.split(':')[3] IndexError: list index out of...