context.ObjectStateManager, assembly reference is missing in Entity Framework
I cant figure out what assembly refrence am i missing? To evade this error for my upsert logic in entity framework? Might be an old question but unable to find a solution for my project.
- Am following a Code First Approach in EF6.2.0
Please refer the picture i have attached for your reference.
/*Code Attached for reference as well */
using System.ComponentModel.DataAnnotations;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Net;
using System.Net.Http;
using System.Configuration;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Azure.WebJobs.Host;
namespace ServerlessCoding
{
public static class EF6AddModifyLogic
{
[FunctionName("EF6AddModifyLogic")]
public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Admin, "get", "post", Route = null)]HttpRequestMessage req, TraceWriter log)
{
log.Info("C# HTTP trigger function processed a request.");
// Get request body
dynamic data = await req.Content.ReadAsAsync<object>();
string name = data?.name;
var connectionString = ConfigurationManager.AppSettings["SqlConnection"];
// var connectionString = ConfigurationManager.ConnectionStrings["SqlConnection"].ConnectionString; // Azure Serverless Code
using (var context = new PersonDbContext(connectionString))
{
// If you can't decide existance of the object by its Id you must exectue lookup query:
var person = new Person { Id = 1, Name = "Foo", Age = 32 };
var idVar = person.Id;
if (await context.Persons.AnyAsync(e => e.Id == idVar))
{
context.Persons.Attach(person); // you can now attach your person object to this context
context.ObjectStateManager.ChangeObjectState(person, System.Data.EntityState.Modified);
}
else
{
context.Persons.Add(person);
}
context.SaveChanges();
}
return name == null
? req.CreateResponse(HttpStatusCode.BadRequest, "Please pass a name on the query string or in the request body")
: req.CreateResponse(HttpStatusCode.OK, "Hello " + name);
}
// POCO Class - This should match the SQL table definition.
public class Person
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
}
// Context Class for creating the tables.
public partial class PersonDbContext : DbContext
{
public PersonDbContext(string cs) : base(cs) { }
public DbSet<Person> Persons { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
}
}
entity-framework azure entity-framework-6 azure-functions
add a comment |
I cant figure out what assembly refrence am i missing? To evade this error for my upsert logic in entity framework? Might be an old question but unable to find a solution for my project.
- Am following a Code First Approach in EF6.2.0
Please refer the picture i have attached for your reference.
/*Code Attached for reference as well */
using System.ComponentModel.DataAnnotations;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Net;
using System.Net.Http;
using System.Configuration;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Azure.WebJobs.Host;
namespace ServerlessCoding
{
public static class EF6AddModifyLogic
{
[FunctionName("EF6AddModifyLogic")]
public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Admin, "get", "post", Route = null)]HttpRequestMessage req, TraceWriter log)
{
log.Info("C# HTTP trigger function processed a request.");
// Get request body
dynamic data = await req.Content.ReadAsAsync<object>();
string name = data?.name;
var connectionString = ConfigurationManager.AppSettings["SqlConnection"];
// var connectionString = ConfigurationManager.ConnectionStrings["SqlConnection"].ConnectionString; // Azure Serverless Code
using (var context = new PersonDbContext(connectionString))
{
// If you can't decide existance of the object by its Id you must exectue lookup query:
var person = new Person { Id = 1, Name = "Foo", Age = 32 };
var idVar = person.Id;
if (await context.Persons.AnyAsync(e => e.Id == idVar))
{
context.Persons.Attach(person); // you can now attach your person object to this context
context.ObjectStateManager.ChangeObjectState(person, System.Data.EntityState.Modified);
}
else
{
context.Persons.Add(person);
}
context.SaveChanges();
}
return name == null
? req.CreateResponse(HttpStatusCode.BadRequest, "Please pass a name on the query string or in the request body")
: req.CreateResponse(HttpStatusCode.OK, "Hello " + name);
}
// POCO Class - This should match the SQL table definition.
public class Person
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
}
// Context Class for creating the tables.
public partial class PersonDbContext : DbContext
{
public PersonDbContext(string cs) : base(cs) { }
public DbSet<Person> Persons { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
}
}
entity-framework azure entity-framework-6 azure-functions
3
Have you read this answer? stackoverflow.com/questions/13581473/…
– Erlangga Hasto Handoko
Nov 28 '18 at 6:39
Legend! That works, thanks heaps for this.
– Chandra
Nov 28 '18 at 7:38
add a comment |
I cant figure out what assembly refrence am i missing? To evade this error for my upsert logic in entity framework? Might be an old question but unable to find a solution for my project.
- Am following a Code First Approach in EF6.2.0
Please refer the picture i have attached for your reference.
/*Code Attached for reference as well */
using System.ComponentModel.DataAnnotations;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Net;
using System.Net.Http;
using System.Configuration;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Azure.WebJobs.Host;
namespace ServerlessCoding
{
public static class EF6AddModifyLogic
{
[FunctionName("EF6AddModifyLogic")]
public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Admin, "get", "post", Route = null)]HttpRequestMessage req, TraceWriter log)
{
log.Info("C# HTTP trigger function processed a request.");
// Get request body
dynamic data = await req.Content.ReadAsAsync<object>();
string name = data?.name;
var connectionString = ConfigurationManager.AppSettings["SqlConnection"];
// var connectionString = ConfigurationManager.ConnectionStrings["SqlConnection"].ConnectionString; // Azure Serverless Code
using (var context = new PersonDbContext(connectionString))
{
// If you can't decide existance of the object by its Id you must exectue lookup query:
var person = new Person { Id = 1, Name = "Foo", Age = 32 };
var idVar = person.Id;
if (await context.Persons.AnyAsync(e => e.Id == idVar))
{
context.Persons.Attach(person); // you can now attach your person object to this context
context.ObjectStateManager.ChangeObjectState(person, System.Data.EntityState.Modified);
}
else
{
context.Persons.Add(person);
}
context.SaveChanges();
}
return name == null
? req.CreateResponse(HttpStatusCode.BadRequest, "Please pass a name on the query string or in the request body")
: req.CreateResponse(HttpStatusCode.OK, "Hello " + name);
}
// POCO Class - This should match the SQL table definition.
public class Person
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
}
// Context Class for creating the tables.
public partial class PersonDbContext : DbContext
{
public PersonDbContext(string cs) : base(cs) { }
public DbSet<Person> Persons { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
}
}
entity-framework azure entity-framework-6 azure-functions
I cant figure out what assembly refrence am i missing? To evade this error for my upsert logic in entity framework? Might be an old question but unable to find a solution for my project.
- Am following a Code First Approach in EF6.2.0
Please refer the picture i have attached for your reference.
/*Code Attached for reference as well */
using System.ComponentModel.DataAnnotations;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Net;
using System.Net.Http;
using System.Configuration;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Azure.WebJobs.Host;
namespace ServerlessCoding
{
public static class EF6AddModifyLogic
{
[FunctionName("EF6AddModifyLogic")]
public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Admin, "get", "post", Route = null)]HttpRequestMessage req, TraceWriter log)
{
log.Info("C# HTTP trigger function processed a request.");
// Get request body
dynamic data = await req.Content.ReadAsAsync<object>();
string name = data?.name;
var connectionString = ConfigurationManager.AppSettings["SqlConnection"];
// var connectionString = ConfigurationManager.ConnectionStrings["SqlConnection"].ConnectionString; // Azure Serverless Code
using (var context = new PersonDbContext(connectionString))
{
// If you can't decide existance of the object by its Id you must exectue lookup query:
var person = new Person { Id = 1, Name = "Foo", Age = 32 };
var idVar = person.Id;
if (await context.Persons.AnyAsync(e => e.Id == idVar))
{
context.Persons.Attach(person); // you can now attach your person object to this context
context.ObjectStateManager.ChangeObjectState(person, System.Data.EntityState.Modified);
}
else
{
context.Persons.Add(person);
}
context.SaveChanges();
}
return name == null
? req.CreateResponse(HttpStatusCode.BadRequest, "Please pass a name on the query string or in the request body")
: req.CreateResponse(HttpStatusCode.OK, "Hello " + name);
}
// POCO Class - This should match the SQL table definition.
public class Person
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
}
// Context Class for creating the tables.
public partial class PersonDbContext : DbContext
{
public PersonDbContext(string cs) : base(cs) { }
public DbSet<Person> Persons { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
}
}
entity-framework azure entity-framework-6 azure-functions
entity-framework azure entity-framework-6 azure-functions
edited Nov 28 '18 at 5:25
Chandra
asked Nov 28 '18 at 2:05
ChandraChandra
404
404
3
Have you read this answer? stackoverflow.com/questions/13581473/…
– Erlangga Hasto Handoko
Nov 28 '18 at 6:39
Legend! That works, thanks heaps for this.
– Chandra
Nov 28 '18 at 7:38
add a comment |
3
Have you read this answer? stackoverflow.com/questions/13581473/…
– Erlangga Hasto Handoko
Nov 28 '18 at 6:39
Legend! That works, thanks heaps for this.
– Chandra
Nov 28 '18 at 7:38
3
3
Have you read this answer? stackoverflow.com/questions/13581473/…
– Erlangga Hasto Handoko
Nov 28 '18 at 6:39
Have you read this answer? stackoverflow.com/questions/13581473/…
– Erlangga Hasto Handoko
Nov 28 '18 at 6:39
Legend! That works, thanks heaps for this.
– Chandra
Nov 28 '18 at 7:38
Legend! That works, thanks heaps for this.
– Chandra
Nov 28 '18 at 7:38
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53511033%2fcontext-objectstatemanager-assembly-reference-is-missing-in-entity-framework%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53511033%2fcontext-objectstatemanager-assembly-reference-is-missing-in-entity-framework%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Have you read this answer? stackoverflow.com/questions/13581473/…
– Erlangga Hasto Handoko
Nov 28 '18 at 6:39
Legend! That works, thanks heaps for this.
– Chandra
Nov 28 '18 at 7:38