Hi!
Im kinda new to c# devt
I used to do a php project
and Im wondering if theres anyway sql commands in php have comparable commands in c#
for example
if I wanna read a data
in php I use
$query = "SELECT * FROM table";
then execute that by
mysql_query($query);
I used to handle c# using data reader
and I wanna ask if theres other way of doing this
thanks!