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

  • Home
  • SEARCH
  • 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 6551909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:23:44+00:00 2026-05-25T12:23:44+00:00

I need to generate some data to unit test my repositories. i was using

  • 0

I need to generate some data to unit test my repositories. i was using a loop to generate a list of objects, see codes below. I learned moq is a great mocking library, Can I use moq to generate that and how do I do it?

public IQueryable<Category> GetCategories()
{
    IList<Category> result = new List<Category>();

    for (int i = 1; i <= 2; i++)
    {
        Category c = new Category();
        c.ID = i;
        c.Name = "Parent" + i.ToString();
        c.ParentID = 0;

        for (int x = i*10; x < i*10+5; x++)
        {
            Category sub = new Category();
            sub.ID = x;
            sub.Name = "Sub" + x.ToString();
            sub.ParentID = i;
            result.Add(sub);
        }

        result.Add(c);
    }

    return result.AsQueryable<Category>();
}
  • 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-25T12:23:44+00:00Added an answer on May 25, 2026 at 12:23 pm

    You can’t use Moq to create the data, but you can use AutoFixture:

    public IQueryable<Category> GetCategories()
    {
        return fixture.CreateMany<Category>().AsQueryable();
    }
    

    However, this will not give you a hierarchical tree. It will return objects like this:

    Object 1:
    - ID = 0
    - ParentID = 1
    Object 2:
    - ID = 2
    - ParentID = 3
    

    etc.

    If you really need to have this hierarchical data, you would need to use the following code:

    public IQueryable<Category> GetCategories()
    {
        var result = new List<Category>();
    
        // Create the parents
        var parents = fixture.Build<Category>()
                             .Without(x => x.ParentID)
                             .CreateMany());
        result.AddRange(parents);
    
        result.AddRange(parents.SelectMany(p => fixture.Build<Category>()
                                                       .With(x => x.ParentID, p.ID)
                                                       .CreateMany())); 
    
        return result.AsQueryable();
    }
    

    This will add multiple parents with multiple subs for each parent.

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

Sidebar

Related Questions

I'm using C# and .NET 3.5. I need to generate and store some T-SQL
I'm using freemarker to generate a freemarker template. But I need some way to
I'm using itextsharp to generate the PDFs, but I need to change some text
I need to pre-compress some very large html/xml/json files (large data dumps) using either
Need to generate some financial report where the formatting is controlled by the data
I'm using a small Python script to generate some binary data that will be
I have multiple WCF services that share some data contracts and need to generate
I am trying to generate some test data. Say I have 1000 appointments that
I am using PHP to generate some XML. I need to put quotes in
for some test I need to run a data driven test with a configuration

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.