Insert Random Value from List to SQL Server C#

This blog article shows you how to insert values randomly from a List collection to SQL Server. I found a website that with the Cities and States of New Zealand. I have extracted some cities and states from the list and created a list of strings as the following code.

public static string GetRandom()

{

    Random random = new Random();

    List<string> list = new List<string> { “West Coast”, “Wellington”, “Lower Hutt”,

        “Masterton”, “Porirua”, “Upper Hutt”, “Wellington”, “Tasman”, “Waikato” };

    int index = random.Next(list.Count);

    return (list[index]);

}

Then I Generate a Model for an Existing Database with the following database structure.

CREATE TABLE [dbo].[CountryState](

    [gid] [uniqueidentifier] NOT NULL,

    [StateName] [varchar](250) NULL,

CONSTRAINT [PK_CountryState] PRIMARY KEY CLUSTERED

(

    [gid] ASC

)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]

) ON [PRIMARY]

Also: Generate Model from an Existing Database with specific tables using Entity Framework Core

The code below is to insert the random State to the database through Entity Framework.

public static void InsertDB(string state)

{

    PocContext context = new PocContext();

    CountryState country = new CountryState();

    country.StateName = state;

    context.Add(country);

    context.SaveChanges();

}

Finally, you have a main function to call the GetRandom and InsertDB function.

static void Main(string[] args)

{

    string state = “”;

    // Scaffold-DbContext “Server=localhost;Database=poc;Trusted_Connection=True;TrustServerCertificate=true” t.EntityFrameworkCore.SqlServer -OutputDir Models -t CountryState -f

    state = InsertRandom();

    InsertDB(state);

}

Source code download: https://github.com/chanmmn/database/tree/main/ConAppRandomState/?WT.mc_id=DP-MVP-36769

Reference: https://www.tutorialspoint.com/how-to-select-a-random-element-from-a-chash-list

https://www.britannica.com/topic/list-of-cities-and-towns-in-New-Zealand-2041679

https://chanmingman.wordpress.com/2023/01/02/a-connection-was-successfully-established-with-the-server-but-then-an-error-occurred-during-the-login-process-provider-ssl-provider/?WT.mc_id=DP-MVP-36769

Unknown's avatar

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming and tagged , . Bookmark the permalink.

1 Response to Insert Random Value from List to SQL Server C#

  1. Pingback: Update using Subquery SQL | Chanmingman's Blog

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.