Top "Entity-framework-6" questions

For questions about the The ADO.

How to update record using Entity Framework 6?

I am trying to update record using EF6. First finding the record, if exists, update it. Here is my code:…

c# entity-framework entity-framework-6 ef-database-first
Entity Framework Provider type could not be loaded?

I am trying to run my tests on TeamCity which is currently installed on my machine. System.InvalidOperationException: The Entity …

c# entity-framework mstest teamcity-7.1 entity-framework-6
How to connect to LocalDB in Visual Studio Server Explorer?

I can't believe I couldn't find a working solution to this after an hour of searching. I'm following this article …

visual-studio entity-framework-6 localdb server-explorer sql-server-2012-localdb
There is already an object named in the database

Update-Database failed from Package Manager Console. I've used Entity Framework 6.x and code-first approach. Error is "There is already an …

database entity-framework ef-code-first entity-framework-6 entity-framework-migrations
How to update record using entity framework core?

What is the best approach to update a database table data in entity frame work core ? Retrive the table row , …

entity-framework-6 .net-core entity-framework-core
Error: No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'

I recently upgraded/updated Entity Framework in an old project from version 4 or 5 to version 6. Now I get this exception: …

c# .net entity-framework ado.net entity-framework-6
How are people unit testing with Entity Framework 6, should you bother?

I am just starting out with Unit testings and TDD in general. I have dabbled before but now I am …

c# entity-framework unit-testing entity-framework-6
Mapping composite keys using EF code first

Sql server table: SomeId PK varchar(50) not null OtherId PK int not null How should I map this in EF 6 …

c# sql-server entity-framework entity-framework-6
Setting unique Constraint with fluent API?

I'm trying to build an EF Entity with Code First, and an EntityTypeConfiguration using fluent API. creating primary keys is …

c# entity-framework entity-framework-6 ef-fluent-api