![]() |
VOOZH | about |
This article illustrates using LINQ to access tables within the Act CRM via the CData ADO.NET Data Provider for Act CRM. To achieve this, we will use LINQ to Entity Framework, which facilitates the generation of connections and can be seamlessly employed with any CData ADO.NET Data Providers to access data through LINQ.
See the help documentation for a guide to setting up an EF 6 project to use the provider.
Enter your data source connection information.
The and properties, under the Authentication section, must be set to valid Act! user credentials. In addition to the authentication values, see the following:
Connecting to Act! Premium
In addition to the authentication values, the to Act! is also required; for example https://eup1-iis-04.eu.hosted.act.com/.
Additionally, you must specify the you will connect to. This is found by going to the About Act! Premium menu of your account, at the top right of the page, in the ? menu. Use the Database Name in the window that appears.
Connecting to Act! Premium Cloud
To connect to your Act! Premium Cloud account, you also need to specify the property. This property is found in the URL address of the Cloud account; for example https://eup1-iis-04.eu.hosted.act.com/ActCloudName/.
Note that retrieving ActCRM metadata can be expensive. It is advised that you set the property to store the metadata locally.
Below is a typical connection string:
URL=https://myActCRMserver.com;User=myUser;Password=myPassword;ActDatabase=MyDB;
Using the entity you created, you can now perform select , update, delete, and insert commands. For example:
ActCRMEntities context = new ActCRMEntities();
var activitiesQuery = from activities in context.Activities
select activities;
foreach (var result in activitiesQuery) {
Console.WriteLine("{0} {1} ", result.Id, result.ActivityDisplayName);
}
See "LINQ and Entity Framework" chapter in the help documentation for example queries of the supported LINQ.
Download a free trial of the Act CRM Data Provider to get started:
Download NowLearn more:
👁 Act CRM IconRapidly create and deploy powerful .NET applications that integrate with Act CRM data including Companies, Contact, Groups, Opportunities, and more!