struct درست کردم این حله ولی یه سوال دیگه تو کد زیر select زدم حالا تو فرم اصلی رو باتن که کلیک شد می خوام مقادیر بره تو گرید ویو اینم راهنماییم کن ممنون

SqlConnection con1 = new SqlConnection();
con1.ConnectionString = global::WIN1.Properties.Settings.Default.connectio nstrring;
con1.Open();
SqlCommand c1 = new SqlCommand();
c1.Connection = con1;
c1.CommandText = "select CARI_KOD as [کد مشتری] , CARI_ISIM as [نام مشتری] from TBLCASABIT where CARI_KOD like '214%'";
c1.ExecuteNonQuery();
con1.Close();