Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3990110
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T06:27:17+00:00 2026-05-20T06:27:17+00:00

I have a list of ids IEnumerable<long> ids How can I delete from a

  • 0

I have a list of ids

IEnumerable<long> ids

How can I delete from a table where the ID matches?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T06:27:18+00:00Added an answer on May 20, 2026 at 6:27 am

    The “standard” way according to the MSDN docs is to use those IDs to pull up each of the objects, then delete them with the DeleteObject command:

    context.Where(x=>ids.Contains(x.Id)).ToList().ForEach(context.DeleteObject);
    

    This will produce N+1 roundtrips to the DB. This is a common downside of ORMs; they’re excellent at 99% of everyday use of SQL by an app (querying for results, creating/updating/deleting single objects) but are not really designed for these bulk operations.

    You could also construct a query using ExecuteStoreCommand, where you "DELETE FROM table WHERE id IN @p1" and specify the list of IDs as a parameter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

if I have a list of IDs (1,4,6,7) and a db table where I
i have a list of event Ids that i want to be excluded from
I currently have two SQL commands. One retrieves a list of unique IDs from
i have a list of event Ids returned from an xml document as shown
I have an IEnumerable that has a list of objects with ids. I want
I have a list of ids of rows to fetch from database. I'm using
I have a list of IDs for objects that I need to grab, then
I have a list of parent/child IDs and would like to get all child
I have a comma delimited list of ids that I want to use to
I have a function where I get a list of ids, and I need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.