About 521,000 results
Open links in new tab
  1. Create database, add tables in .NET Framework apps - Visual Studio ...

    Feb 3, 2025 · Create a database with tables and foreign keys in a .NET Framework application by using Table Designer in Visual Studio.

  2. How to create a table in a form in Visual Studio - Stack Overflow

    May 8, 2015 · How can I make a table, like an excel table, to show the contents of a two dimensional dynamic array in visual studio? I see that in visual studio 2008 there was a table …

  3. Create Table Programmatically in ASP.NET - C# Corner

    In this article we will create a table in a web application programmatically. Instead of a database table we will create a table in a code behind file using the DataTable class. We can add rows …

  4. Create Table in Sql Server Using C# - Programming, Pseudocode …

    In this example, we’ll learn how to create a table in Sql Server Database by using C# because programmers often need to create tables programmatically. To create the database, follow …

  5. New DataTable in Dataset Designer (.NET Framework) - Visual Studio ...

    Aug 5, 2024 · Create a DataTable (without a TableAdapter) with the Dataset Designer in Visual Studio for .NET Framework applications and build a Windows Forms app with a dataset.

  6. c# - Creating a datatable using visual studio - Stack Overflow

    Jul 12, 2017 · You can drag-n-drop a DataGridView from Visual Studio Designer(suppose you name it 'mydatagridview'), then from code behind you can use mydatagridview.DataSource = …

  7. Create tables (Database Engine) - SQL Server | Microsoft Learn

    Feb 4, 2025 · You can create a new table, name it, and add it to an existing database, by using the table designer in SQL Server Management Studio (SSMS), or Transact-SQL. This task …

  8. C# - Create SQL Server table programmatically - Stack Overflow

    Oct 25, 2013 · If you don't like remembering SQL syntax, using Mig# you can simply: var schema = new DbSchema(ConnectionString, DbPlatform.SqlServer2014); schema.Alter(db => …

  9. Generate C# Class Code for Table in Visual Studio

    May 8, 2017 · Get Table Names, Attributes and their types from the database. CREATE PROCEDURE getData AS . select table_name, column_name, data_type.

  10. Insert records into database (.NET Framework) - Visual Studio

    Aug 26, 2024 · This article describes how to insert records into a database for an application built with ADO.NET and the .NET Framework by using Visual Basic (VB) or C#. If your application …

  11. Some results have been removed