SNIReadSyncOverAsync and WaitForSingleObject blocking EF performance?
I am doing some profiling on a WCF service that uses EF (System.Data.Entities) to read from a SQL DB. When I spin up … Read more
I am doing some profiling on a WCF service that uses EF (System.Data.Entities) to read from a SQL DB. When I spin up … Read more
Basically I got a table in my EF database with the following properties: public int Id { get; set; } public string Title … Read more
I know some differences of LINQ to Entities and LINQ to Objects which the first implements IQueryable and the second implements IEnumerable and … Read more
Here’s the table Users UserId UserName Password EmailAddress and the code.. public void ChangePassword(int userId, string password){ //code to update the password.. } … Read more
Does the virtual keyword has an effect when used on the properties in EF Code First?. Can someone describe all of its ramifications … Read more
The error message : “The model backing the ‘AddressBook’ context has changed since the database was created. Either manually delete/update the database, or … Read more
I’ve been wrestling with this for a while and can’t quite figure out what’s happening. I have a Card entity which contains Sides … Read more
I am getting timeouts using the Entity Framework (EF) when using a function import that takes over 30 seconds to complete. I tried … Read more
This looks like a really common task, but I can’t find an easy way to do it. I want to undo the last … Read more
I have this query and I get the error in this function: var accounts = from account in context.Accounts from guranteer in account.Gurantors … Read more