DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Last call! Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workloads.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • Strategies for Improving the Performance of Applications Using EF Core
  • From Naked Objects to Naked Functions
  • Working With Transactions in Entity Framework Core and Entity Developer
  • Working With Lazy Loading and Eager Loading in Entity Framework Core and Entity Developer

Trending

  • Recurrent Workflows With Cloud Native Dapr Jobs
  • A Modern Stack for Building Scalable Systems
  • Beyond Linguistics: Real-Time Domain Event Mapping with WebSocket and Spring Boot
  • Streamlining Event Data in Event-Driven Ansible
  1. DZone
  2. Coding
  3. Frameworks
  4. Access Redshift Data With Entity Framework 6

Access Redshift Data With Entity Framework 6

This article shows how to access Redshift data using an Entity Framework code-first approach. Entity Framework 6 is available in .NET 4.5 and above.

By 
Jerod Johnson user avatar
Jerod Johnson
·
May. 24, 19 · Tutorial
Likes (4)
Comment
Save
Tweet
Share
8.9K Views

Join the DZone community and get the full member experience.

Join For Free

Entity Framework is an object-relational mapping framework that can be used to work with data as objects. While you can run the ADO.NET Entity Data Model wizard in Visual Studio to handle generating the Entity Model, this approach, the model-first approach, can put you at a disadvantage if there are changes in your data source or if you want more control over how the entities operate. In this article you will complete the code-first approach to accessing Redshift data using the CData ADO.NET Provider.

  • Open Visual Studio and create a new Windows Form Application. This article uses a C# project with .NET 4.5.
  • Run the command 'Install-Package EntityFramework' in the Package Manger Console in Visual Studio to install the latest release of Entity Framework.
  • Modify the App.config file in the project to add a reference to the Redshift Entity Framework 6 assembly and the connection string.To connect to Redshift, set the following:

    • Server: Set this to the host name or IP address of the cluster hosting the Database you want to connect to.
    • Port: Set this to the port of the cluster.
    • Database: Set this to the name of the database. Or, leave this blank to use the default database of the authenticated user.
    • User: Set this to the username you want to use to authenticate to the Server.
    • Password: Set this to the password you want to use to authenticate to the Server.

    You can obtain the Server and Port values in the AWS Management Console:

    1. Open the Amazon Redshift console (http://console.aws.amazon.com/redshift).
    2. On the Clusters page, click the name of the cluster.
    3. On the Configuration tab for the cluster, copy the cluster URL from the connection strings displayed.
    4. <configuration>
      ...
      <connectionStrings>
      <add name="RedshiftContext" connectionString="Offline=False;User=admin;Password=admin;Database=dev;Server=examplecluster.my.us-west-2.redshift.amazonaws.com;Port=5439" providerName="System.Data.CData.Redshift" />
      </connectionStrings>
      <entityFramework>
      <providers>
      ...
      <provider invariantName="System.Data.CData.Redshift" type="System.Data.CData.Redshift.RedshiftProviderServices, System.Data.CData.Redshift.Entities.EF6" />
      </providers>
      <entityFramework>
      </configuration>
      </code>
    5. Add a reference to System.Data.CData.Redshift.Entities.EF6.dll, located in the lib -> 4.0 subfolder in the installation directory.
    6. Build the project at this point to ensure everything is working correctly. Once that's done, you can start coding using Entity Framework.
    7. Add a new .cs file to the project and add a class to it. This will be your database context, and it will extend the DbContext class. In the example, this class is named RedshiftContext. The following code example overrides the OnModelCreating method to make the following changes:
      • Remove PluralizingTableNameConvention from the ModelBuilder Conventions.
      • Remove requests to the MigrationHistory table.
    8. using System.Data.Entity;
      using System.Data.Entity.Infrastructure;
      using System.Data.Entity.ModelConfiguration.Conventions;
      
      class RedshiftContext : DbContext {
      public RedshiftContext() { }
      
      protected override void OnModelCreating(DbModelBuilder modelBuilder)
      {
      // To remove the requests to the Migration History table
      Database.SetInitializer<RedshiftContext>(null); 
      // To remove the plural names   
      modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
      } 
      }
    9. Create another .cs file and name it after the Redshift entity you are retrieving, for example, Orders. In this file, define both the Entity and the Entity Configuration, which will resemble the example below:
    10. using System.Data.Entity.ModelConfiguration;
      using System.ComponentModel.DataAnnotations.Schema;
      
      [System.ComponentModel.DataAnnotations.Schema.Table("Orders")]
      public class Orders {
      [System.ComponentModel.DataAnnotations.Key]
      public System.String ShipName { get; set; }
      public System.String ShipCity { get; set; }
      }
    11. Now that you have created an entity, add the entity to your context class: public DbSet<Orders> Orders { set; get; }
    12. With the context and entity finished, you are now ready to query the data in a separate class. For example:
    13. RedshiftContext context = new RedshiftContext();
      context.Configuration.UseDatabaseNullSemantics = true;
      var query = from line in context.Orders select line;
    Database Entity Framework Data (computing) Redshift (theory) Framework

    Published at DZone with permission of Jerod Johnson, DZone MVB. See the original article here.

    Opinions expressed by DZone contributors are their own.

    Related

    • Strategies for Improving the Performance of Applications Using EF Core
    • From Naked Objects to Naked Functions
    • Working With Transactions in Entity Framework Core and Entity Developer
    • Working With Lazy Loading and Eager Loading in Entity Framework Core and Entity Developer

    Partner Resources

    ×

    Comments

    The likes didn't load as expected. Please refresh the page and try again.

    ABOUT US

    • About DZone
    • Support and feedback
    • Community research
    • Sitemap

    ADVERTISE

    • Advertise with DZone

    CONTRIBUTE ON DZONE

    • Article Submission Guidelines
    • Become a Contributor
    • Core Program
    • Visit the Writers' Zone

    LEGAL

    • Terms of Service
    • Privacy Policy

    CONTACT US

    • 3343 Perimeter Hill Drive
    • Suite 100
    • Nashville, TN 37211
    • support@dzone.com

    Let's be friends: