ADO.NET Provider for Sage 50 UK

Build 23.0.8839

Code-First Approach

An alternative to introspecting the model from the provider is to handwrite your model classes. This is the code-first approach to Entity Framework, which gives you greater control over the exact data model you use in your application.

Install Entity Framework

Install Entity Framework or add references to the required assemblies for your chosen version of Entity Framework. See Using EF 6 for using Entity Framework 6. See Installed Assemblies for more information about all assemblies shipped with the provider.

Register the Provider

Add the connection string to App.Config or Web.config. The connectionStrings node is often located directly below the configSection node in the root configuration node.

<configuration>
  ...
  <connectionStrings>
    <add name="Sage50UKContext" connectionString="URL=http://localhost:5493/sdata/accounts50/GCRM/{C4C863BE-B098-4A7D-A78B-D7A92B8ADB59};User=Manager;Password=xxxxxx;" providerName="System.Data.CData.Sage50UK" />
  </connectionStrings>
  ...
</configuration>

Create the Context Class

Start by creating the Sage50UKContext class. This is the base object that extends DbContext and exposes the DbSet properties that represent the tables in the data source. Next, override some of the default functionality of the DbContext class by overriding the OnModelCreating method. You can find a description of these properties in the code below:

C#

using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;

class Sage50UKContext : DbContext {
  public Sage50UKContext() { }

  public DbSet<TradingAccounts> TradingAccounts { set; get; }
  
  protected override void OnModelCreating(DbModelBuilder modelBuilder)
  {
    // To remove the requests to the Migration History table
    Database.SetInitializer<Sage50UKContext>(null);
    // To remove the plural names
    modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();    
    //For versions of EF before 6.0, uncomment the following line to remove calls to EdmTable, a metadata table
    //modelBuilder.Conventions.Remove<IncludeMetadataConvention>();
	//To remove the default schema "dbo" 
	modelBuilder.HasDefaultSchema("");
  }  
}

VB.NET

Imports System.Data.Entity
Imports System.Data.Entity.Infrastructure
Imports System.Data.Entity.ModelConfiguration.Conventions

Class Sage50UKContext 
Inherits DbContext 

  Public Sub New()
  End Sub
  
  public property TradingAccounts As DbSet(Of TradingAccounts)
  
 Protected Overrides Sub OnModelCreating(modelBuilder As DbModelBuilder)
    ' To remove the requests to the Migration History table
    Database.SetInitializer(of Sage50UKContext)(Nothing)
    ' To remove the plural names
    modelBuilder.Conventions.Remove(Of PluralizingTableNameConvention)
    ' For versions of EF before 6.0, uncomment the following line to remove calls to EdmTable, a metadata table
    ' modelBuilder.Conventions.Remove(Of IncludeMetadataConvention)()
	' To remove the default schema "dbo" 
	modelBuilder.HasDefaultSchema("")
 End Sub

End Class

Create the Table Models

Finally, define a class for each table that was defined in the DbSet properties of the context class. The table classes should have a list of properties that correspond to each field of that table. A corresponding map class must be defined to configure attributes for each property in the table class.

C#

using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations.Schema; //EF 6 and later
//using System.ComponentModel.DataAnnotations //For versions of EF before 6


[System.ComponentModel.DataAnnotations.Schema.Table("TradingAccounts")]
public class TradingAccounts  {
  [System.ComponentModel.DataAnnotations.Key]
  public System.String TradingAccountUUID { get; set; }
  public System.String Name { get; set; }
}

VB.NET

Imports System.Data.Entity.ModelConfiguration
Imports System.ComponentModel.DataAnnotations.Schema 'EF 6 and later
'Imports System.ComponentModel.DataAnnotations 'For versions of EF before 6


<System.ComponentModel.DataAnnotations.Schema.Table("TradingAccounts")>
public class TradingAccounts  
  <System.ComponentModel.DataAnnotations.Key>
  public property TradingAccountUUID As System.String
  public property Name As System.String
End Class

Perform LINQ Commands in Your Code

You are now ready to start using LINQ in your code. Be sure to declare (c#)"using System.Linq"/(VB.Net)"Imports System.Linq" in your file.

C#

Sage50UKContext ents = new Sage50UKContext();
var TradingAccountsQuery = from TradingAccounts in ents.TradingAccounts
                   orderby TradingAccounts.Name
                   select TradingAccounts;

VB.Net

    Dim ents As Sage50UKContext = New Sage50UKContext()
    Dim TradingAccountsQuery = From TradingAccounts In ents.TradingAccounts
	Order By TradingAccounts.Name
	Select TradingAccounts

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839