![]() |
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 Facebook 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 Facebook Entity Framework 6 assembly and the connection string.
Most tables require user authentication as well as application authentication. Facebook uses the OAuth authentication standard. To authenticate to Facebook, you can use the embedded OAuthClientId, OAuthClientSecret, and CallbackURL or you can obtain your own by registering an app with Facebook.
See the Getting Started chapter of the help documentation for a guide to using OAuth.
<configuration> ... <connectionStrings> <add name="FacebookContext" connectionString="Offline=False;InitiateOAuth=GETANDREFRESH;" providerName="System.Data.CData.Facebook" /> </connectionStrings> <entityFramework> <providers> ... <provider invariantName="System.Data.CData.Facebook" type="System.Data.CData.Facebook.FacebookProviderServices, System.Data.CData.Facebook.Entities.EF6" /> </providers> <entityFramework> </configuration> </code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class FacebookContext : DbContext {
public FacebookContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
// To remove the requests to the Migration History table
Database.SetInitializer<FacebookContext>(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("Posts")]
public class Posts {
[System.ComponentModel.DataAnnotations.Key]
public System.String FromName { get; set; }
public System.String LikesCount { get; set; }
}
public DbSet<Posts> Posts { set; get; }
FacebookContext context = new FacebookContext(); context.Configuration.UseDatabaseNullSemantics = true; var query = from line in context.Posts select line;
Download a free trial of the Facebook Data Provider to get started:
Download NowLearn more:
👁 Facebook IconConnect any Web, Desktop, or Mobile .NET application with Facebook data including Events, Groups, Pages, Places, Posts and more!