Skip to content

Commit 311de8c

Browse files
authored
Make titles unique (#2517)
1 parent edc9c7f commit 311de8c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

entity-framework/ef6/querying/raw-sql.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ author: divega
44
ms.date: "10/23/2016"
55
ms.assetid: 9e1ee76e-2499-408c-81e8-9b6c5d1945a0
66
---
7-
# Raw SQL Queries
7+
# Raw SQL Queries (EF6)
8+
89
Entity Framework allows you to query using LINQ with your entity classes. However, there may be times that you want to run queries using raw SQL directly against the database. This includes calling stored procedures, which can be helpful for Code First models that currently do not support mapping to stored procedures. The techniques shown in this topic apply equally to models created with Code First and the EF Designer.
910

1011
## Writing SQL queries for entities

entity-framework/ef6/saving/concurrency.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ author: divega
44
ms.date: "10/23/2016"
55
ms.assetid: 2318e4d3-f561-4720-bbc3-921556806476
66
---
7-
# Handling Concurrency Conflicts
7+
# Handling Concurrency Conflicts (EF6)
8+
89
Optimistic concurrency involves optimistically attempting to save your entity to the database in the hope that the data there has not changed since the entity was loaded. If it turns out that the data has changed then an exception is thrown and you must resolve the conflict before attempting to save again. This topic covers how to handle such exceptions in Entity Framework. The techniques shown in this topic apply equally to models created with Code First and the EF Designer.
910

1011
This post is not the appropriate place for a full discussion of optimistic concurrency. The sections below assume some knowledge of concurrency resolution and show patterns for common tasks.

0 commit comments

Comments
 (0)