![]() |
VOOZH | about |
This article illustrates using LINQ to access tables within the Sage 300 via the CData ADO.NET Data Provider for Sage 300. 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.
Sage 300 requires some initial setup in order to communicate over the Sage 300 Web API.
Authenticate to Sage 300 using Basic authentication.
You must provide values for the following properties to successfully authenticate to Sage 300. Note that the provider reuses the session opened by Sage 300 using cookies. This means that your credentials are used only on the first request to open the session. After that, cookies returned from Sage 300 are used for authentication.
Below is a typical connection string:
User=SAMPLE;Password=password;URL=http://127.0.0.1/Sage300WebApi/v1/-/;Company=SAMINC;
Using the entity you created, you can now perform select commands. For example:
Sage300Entities context = new Sage300Entities();
var oeinvoicesQuery = from oeinvoices in context.OEInvoices
select oeinvoices;
foreach (var result in oeinvoicesQuery) {
Console.WriteLine("{0} {1} ", result.Id, result.InvoiceUniquifier);
}
See "LINQ and Entity Framework" chapter in the help documentation for example queries of the supported LINQ.
Download a free trial of the Sage 300 Data Provider to get started:
Download NowLearn more:
👁 Sage 300 IconRapidly create and deploy powerful .NET applications that integrate with Sage 300.