![]() |
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 Smartsheet data through the CData ADO.NET Provider, providing you with more flexibility and control.
CData provides the easiest way to access and integrate live data from Smartsheet. Customers use CData connectivity to:
Users frequently integrate Smartsheet with analytics tools such as Tableau, Crystal Reports, and Excel. Others leverage our tools to replicate Smartsheet data to databases or data warehouses.
Modify the App.config file in the project to add a reference to the Smartsheet Entity Framework 6 assembly and the connection string.
Smartsheet uses the OAuth authentication standard. To authenticate using OAuth, register an app to obtain the OAuthClientId, OAuthClientSecret, and CallbackURL connection properties.
However, for testing purposes you can instead use the Personal Access Token you get when you create an application; set this to the OAuthAccessToken connection property.
<configuration> ... <connectionStrings> <add name="SmartsheetContext" connectionString="Offline=False;OAuthClientId=MyOauthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:33333;InitiateOAuth=GETANDREFRESH;" providerName="System.Data.CData.Smartsheet" /> </connectionStrings> <entityFramework> <providers> ... <provider invariantName="System.Data.CData.Smartsheet" type="System.Data.CData.Smartsheet.SmartsheetProviderServices, System.Data.CData.Smartsheet.Entities.EF6" /> </providers> <entityFramework> </configuration> </code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class SmartsheetContext : DbContext {
public SmartsheetContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
// To remove the requests to the Migration History table
Database.SetInitializer<SmartsheetContext>(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("Sheet_Event_Plan_Budget")]
public class Sheet_Event_Plan_Budget {
[System.ComponentModel.DataAnnotations.Key]
public System.String TaskName { get; set; }
public System.String Progress { get; set; }
}
public DbSet<Sheet_Event_Plan_Budget> Sheet_Event_Plan_Budget { set; get; }
SmartsheetContext context = new SmartsheetContext(); context.Configuration.UseDatabaseNullSemantics = true; var query = from line in context.Sheet_Event_Plan_Budget select line;
Download a free trial of the Smartsheet Data Provider to get started:
Download NowLearn more:
👁 Smartsheet IconEasy-to-use Smartsheet client enables .NET-based applications to easily consume Smartsheet Sheets, Contacts, Folders, Groups, Users, etc.