Betim Beja
Betim Beja
@daryllabar I checked for this bug in Albanian Early Bound (where I correctly handle comments generated by the tool), and I can confirm that this is a bug with CrmSvcUtil.exe,...
Hello @burkenyo , to mock all possible queries we must also handle the escaped `%` meaning `[%]`. Best regards, Betim Beja.
Hello @burkenyo , I submitted PR #511 which should fix this issue. If you like you can add some unit tests to my PR so we can test all the...
Hello @Venkateshpilla08 , to be honest I don't understand your question, if you don't know how to build a test case that uses FetchXml I can tell you that there...
Think of FakeXrmEasy as an in-memory representation of your CRM Instance... It offers you various ways to write your unit tests, you can test your [plugins](https://github.com/jordimontana82/fake-xrm-easy/blob/4fe236f1b347c6e28a03ead7fbc4afa3585dae75/FakeXrmEasy.Shared/XrmFakedContext.Plugins.cs#L108)/[workflows](https://github.com/jordimontana82/fake-xrm-easy/blob/4fe236f1b347c6e28a03ead7fbc4afa3585dae75/FakeXrmEasy.Shared/XrmFakedContext.CodeActivities.cs#L37) or you can use...
Perhaps we could track usage in the package and change the condition to ```csharp #if FAKE_XRM_EASY || FAKE_XRM_EASY_2013 || FAKE_XRM_EASY_2015 ``` and drop those parts of the code from the...
I have done some quick check of uses of the Xrm.Client namespace and the only required change is the line you specified [here](https://github.com/jordimontana82/fake-xrm-easy/blob/master/FakeXrmEasy.Shared/Metadata/MetadataGenerator.cs#L142-L147). The other references are being correctly handled...
Hello Jordi, i just tested this and can confirm that the CRM and FakeXrmEasy behave in different ways. You can see in this screenshot that the CRM throws an exception,...
Hi @wingzeroaa , I think @jordimontana82 was suggesting a possible solution so you could issue the PR which he will review 😀 If you do Issue a PR, please provide...
@jordimontana82 I thought about this kind of solution too, the only difference being that there are edge cases like `systemuser` where the State field is `isdisabled`. I can try to...