Execute fetchxml queries in javascript using XrmLinq
Javascript is a popular method of accessing and displaying data in crm. We’ve created a javascript library that you can re-use to make it easier. Let’s take a look at how easy it is to execute a fetchxml query and display the results. <script type=”text/javascript”> function FetchExample() { // create a connection to the server [...]
Bulk delete records in dynamics crm
To bulk delete records in crm you need to use the BulkDeleteRequest/Response. One of the parameters in there is the QuerySet. It allows you to set multiple conditions for deleting a set of records. QuerySet takes in an array of QueryExpressions but writing QueryExpressions are not that fun, so we’ve added functionality into XrmLinq to [...]
Linq to Dynamics CRM integrated with Visual Studio 2008 & 2010
We are constantly improving our tools to make your xRM solution development easier, faster and cost-effective. Microsoft Dynamics CRM is a great platform, by leveraging existing technologies such as LINQ to SQL, Visual Studio and the .NET framework, we can quickly up-skill/rampup existing developers to create xRM solutions ontop of Microsoft Dynamics CRM. We plan [...]
Safely add script references to dynamics crm pages
Dynamics CRM is great, one of the great things is the ability to write custom javascript. Out of the box, unfortunately doesn’t give you the ability to reference external scripts which is a bit of a pain because you end up copy pasting/duplicating code all over the place. Recommended methods 1. Dynamically load the script [...]

Try XrmLinq