Yasaki Kondo
Yasaki Kondo
CC#
Created by Yasaki Kondo on 8/14/2024 in #help
I need help asap
No description
12 replies
CC#
Created by Yasaki Kondo on 8/5/2024 in #help
How to click on link?
No description
9 replies
CC#
Created by Yasaki Kondo on 7/8/2024 in #help
✅ Trying out NUnit test, I need help!
No description
27 replies
CC#
Created by Yasaki Kondo on 12/5/2023 in #help
It's not showing the database in datagridview
No description
5 replies
CC#
Created by Yasaki Kondo on 10/11/2023 in #help
❔ I'm trying to connect to a database from LinQ to SQL
static void Main(string[] args)
{
using (var db = new CustomerDBDataContext(@"DataSource=.;Initial Catalog=northwind;Intergrated Security=True"))
{
var customers = db.Customers().ToList();
foreach (var x in customers)
{
Console.WriteLine(x.CompanyName);
}
}
}
static void Main(string[] args)
{
using (var db = new CustomerDBDataContext(@"DataSource=.;Initial Catalog=northwind;Intergrated Security=True"))
{
var customers = db.Customers().ToList();
foreach (var x in customers)
{
Console.WriteLine(x.CompanyName);
}
}
}
88 replies