![]() |
VOOZH | about |
Microsoft Entity Framework serves as an object-relational mapping framework for working with data represented as objects. Although Visual Studio offers the ADO.NET Entity Data Model wizard to automatically generate the Entity Model, this model-first approach may present challenges when your data source undergoes changes or when you require greater control over entity operations. In this article, we will delve into the code-first approach for accessing SharePoint Excel Services data through the CData ADO.NET Provider, providing you with more flexibility and control.
Modify the App.config file in the project to add a reference to the SharePoint Excel Services Entity Framework 6 assembly and the connection string.
The URL, User, and Password properties, under the Authentication section, must be set to valid credentials for SharePoint Online, SharePoint 2010, or SharePoint 2013. Additionally, the Library property must be set to a valid SharePoint Document Library and the File property must be set to a valid .xlsx file in the indicated Library.
<configuration> ... <connectionStrings> <add name="ExcelServicesContext" connectionString="Offline=False;URL=https://myorg.sharepoint.com;[email protected];Password=password;File=Book1.xlsx;" providerName="System.Data.CData.ExcelServices" /> </connectionStrings> <entityFramework> <providers> ... <provider invariantName="System.Data.CData.ExcelServices" type="System.Data.CData.ExcelServices.ExcelServicesProviderServices, System.Data.CData.ExcelServices.Entities.EF6" /> </providers> <entityFramework> </configuration> </code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class ExcelServicesContext : DbContext {
public ExcelServicesContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
// To remove the requests to the Migration History table
Database.SetInitializer<ExcelServicesContext>(null);
// To remove the plural names
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations.Schema;
[System.ComponentModel.DataAnnotations.Schema.Table("Account")]
public class Account {
[System.ComponentModel.DataAnnotations.Key]
public System.String Name { get; set; }
public System.String AnnualRevenue { get; set; }
}
public DbSet<Account> Account { set; get; }
ExcelServicesContext context = new ExcelServicesContext(); context.Configuration.UseDatabaseNullSemantics = true; var query = from line in context.Account select line;
Download a free trial of the SharePoint Excel Services Data Provider to get started:
Download NowLearn more:
👁 SharePoint Excel Services IconRapidly create and deploy powerful .NET applications that integrate with live Excel Spreadsheet content hosted on SharePoint server!