In LINQ to SQL, I could do:
context.User_Roles.DeleteAllOnSubmit(context.User_Roles.Where(ur => ur.UserId == user.UserId));
Whats the equivalent to this for entity framework?
|
In LINQ to SQL, I could do:
Whats the equivalent to this for entity framework? |
|||
|
Of course, you can write an extension method, which would encapsulate this. This would be something like this:
Called like:
|
|||||||||||||
|
|
@Femaref has the right idea, but for a true analog to L2E's
|
|||||||||
|
of course, this solution can work. But, it is the most inefficient solution. This solution will generate one delete SQL command for each record (entity). Imaging that you want to delete all data before year 2000 . there are more than 1,000,000 records in the database. If delete these objects in this way, more than 1,000,000 SQL commands will be sent to the server, it is a unnecessary big waste. What |
|||||||||||||
|
|
There is no RemoveAll equivalent in Entity Framework, so you can load entities in memory and remove them one by one using DeleteObject method. You can use Linq : context.MyEntitie.RemoveAll(context.MyEntitie); |
|||
|
|
|
use EntityFramework.Extensions 2) Here is the code similar to Linq2Sql's DeleteAllOnSubmit():
|
|||
|