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 602127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:47:21+00:00 2026-05-13T16:47:21+00:00

I am going through a massive list of business objects and inserting them into

  • 0

I am going through a massive list of business objects and inserting them into the database using Linq-to-Sql.

Some of the business objects contain a payment method record (cheques, credit card etc..)

When it comes to adding a payment method, I want to check to ensure I havent already added it, cos otherwise it will rant at me when I come to Submit my changes.

if ( !context.PaymentMethods.Any ( paymentMethod => paymentMethod.PaymentMethodID == iPaymentMethod.PaymentMethodID ) )
{
    PaymentMethod method = new PaymentMethod ();
    method.PaymentMethodID = iPaymentMethod.PaymentMethodID;

    // etc...

    context.PaymentMethods.InsertOnSubmit ( method );
 }

This doesnt work, I presume because Any is checking the database and not the list of objects I am about to Insert on Submit.

I know I can maintain my own list to check if the records have already been added, but to save a lot of hassle, I was just wondering if there was a tidy, Linq way to do this? Any way to check context.PaymentMethods to see if it has been added?

  • 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-13T16:47:21+00:00Added an answer on May 13, 2026 at 4:47 pm

    A possible solution would be to check the ChangeSet of the Context:

    Func<PaymentMethod,bool> f = 
         paymentMethod => paymentMethod.PaymentMethodID == iPaymentMethod.PaymentMethodID;
    
    if (!context.PaymentMethods.Any(f) && 
        !context.GetChangeSet().Inserts.OfType<PaymentMethod>().Any(f))
    {
       // Submit
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Going through some of my older Delphi projects and upgrading them to D2009, as
Been going through some framework classes using reflector and noticed a number of the
Going through some documentation on modifying CGImageRef data, I came across a strange example
While going through some tutorials, I have encountered lines such as this: ((IDisposable)foo).Dispose(); Ignore
Going through some WCF hosting questions on StackOverflow, I've seen Dublin mentioned a few
We're going through a massive migration project at the minute and trying to validate
After going through some tutorials on asp.net mvc the repository pattern came up and
Going through the Active Support Core Extensions guide , it looks like some of
While going through Wikipedia's list of sorting algorithms I noticed that there's no stable
Going through happstack-lite tutorial : we build functions that have return type of ServerPart

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.