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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:23:26+00:00 2026-06-11T22:23:26+00:00

For example Service Stack does this to with the Northwind database: http://www.servicestack.net/ServiceStack.Northwind/customers/ALFKI?format=html Is there

  • 0

For example Service Stack does this to with the Northwind database:

http://www.servicestack.net/ServiceStack.Northwind/customers/ALFKI?format=html 

Is there anything that reads the database structure and relationships and output a report based on a primary id?

Obviously, I am looking into alternatives to servicestack.

  • 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-06-11T22:23:29+00:00Added an answer on June 11, 2026 at 10:23 pm

    I use LINQPad’s .Dump() object visualizer for that. Download LINQPad from http://www.linqpad.net and reference the .exe in your project.

    You will then have access to LINQPads .CreateXhtmlWriter() that can output a beautiful object graph visualization:

    LINQPad .Dump() example

    just by going:

    var listOfItems = DataContext.Items.ToList();
    
    listOfItems.Dump();
    

    The following is not my code, but I cannot find the origin, so bear with me.

    Use extension method to create the Xhtml dump and show it a browser:

    public static class LinqPadExtensions
    {
        /// <summary>
        /// Writes object properties to HTML 
        /// and displays them in default browser.
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="o"></param>
        /// <param name="heading"></param>
        public static void Dump<T>(
            this T o,
            string heading = null
        )
        {
            string localUrl =
                Path.GetTempFileName() + ".html";
            using (
                var writer =
                    LINQPad.Util.CreateXhtmlWriter(true)
            )
            {
                if (!String.IsNullOrWhiteSpace(heading))
                    writer.Write(heading);
                writer.Write(o);
                File.WriteAllText(localUrl, writer.ToString());
            }
    
            Process.Start(localUrl);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm following this example: http://www.codinghorror.com/blog/2005/12/getting-started-with-indexing-service.html However, the conversion to dataset shows empty columns for
I'm trying to compile and run the following example on Ubuntu 10.10 http://www.boost.org/doc/libs/1_47_0/doc/html/boost_asio/example/http/server3/ but
I am trying to connect to an example soap server at http://www.webservicex.net/ using the
I created a duplex service ( NetTcpBinding ) like this example : I used
I made a WPF example that consumes a web service ( www.webservicex.com/globalweather.asmx ) in
Android kills my service in the package com.net.myspeechservice under some certain scenarios, for example
Does startService() create a new Service instance or using the existing one? For example,
We've got the following WCF Service Contracts: [ServiceContract(Namespace = http://example.com, Name = Service1)] public
I've just worked through the Rail example supplied by Apple: http://developer.apple.com/Tools/developonrailsleopard.html Now that I'm
What does urn: stand for? I am playing with the ServiceStack Redis example. It

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.