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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T19:49:59+00:00 2026-05-16T19:49:59+00:00

Here is my method that returns an IQueryable of Countries: using System; using System.Collections.Generic;

  • 0

Here is my method that returns an IQueryable of Countries:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace InternationalShipments.Repository
{
    public class CountryRepository
    {
        ShipmentsEntities db = new ShipmentsEntities();

        public IQueryable<Country> FindAll()
        {
            return db.Countries;
        }

        public Country Get(int id)
        {
            return db.Countries.FirstOrDefault(x => x.ID == id);
        }

        public void Add(Country country)
        {
            db.Countries.AddObject(country);
        }

        public void Delete(Country country)
        {
            db.Countries.DeleteObject(country);
        }

        public void Save()
        {
            db.SaveChanges();
        }
    }
}

My intent is to show a form that lets you create new countries and on the same page, continue to display all countries in the DB. So if a user adds a new country, it should display in the table above.

Any guidance?

  • 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-16T19:50:02+00:00Added an answer on May 16, 2026 at 7:50 pm

    The easiest way would be to use a Repeater. Using that you can easily bind your data to the control and create an HTML template for the output. If you want something with a little more power, you can try the DataGrid or Gridview

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

Sidebar

Related Questions

Using SubSonic3, I have this generic method (thanks to linq guy, James Curran): public
Here is one method that monkey patched the Dir[] method from autotest class Dir
Here's my problem: I have a virtual method defined in a .h file that
I've done scaffolding using the method described here http://wiki.rubyonrails.org/rails/pages/ScaffoldGenerator However, I want to know
I have a quite simple WCF service method which returns an IQueryable, just for
Here's a simple method with a foreach loop: IEnumerable<XElement> FieldsToXElements(object instance) { var fieldElements
Here's a question to expose my lack of experience: I have a method DoSomething()
Here's a quicky question. Which method name makes the most sense for an Objective-C
As a secondary method to my question here: Show Cell Range on UserForm; then
Referenced here and here ...Why would I use two's complement over an epsilon method?

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.