MscrmTools / MscrmTools.FluentQueryExpressions

A library to create QueryExpression the fluent way
GNU General Public License v3.0
23 stars 7 forks source link

How is this library different from Microsoft.Xrm.Sdk.Client.OrganizationServiceContext.CreateQuery? #8

Closed siggipop closed 1 year ago

siggipop commented 1 year ago

label: question How is this library different from Microsoft.Xrm.Sdk.Client.OrganizationServiceContext.CreateQuery?

MscrmTools commented 1 year ago

Good question :)

This library is made to be fully discoverable (all condition operators are translated in methods for example) but less verbose than traditionnal QueryExpression.

So I would say this library can help you find everything you can do when querying Dataverse. LINQ in the other hand lets you write anything you want but you are not sure a valid query expression will be generated for Dataverse.