1-) C# RMOS - ÇOKTAN SEÇMELİ CheckedComboboxEdit SQL in komutu için
public static string MyCheckedComboboxEditSQL(string pString) {
try
{
pString= pString.Replace(", ",",");
string cikti = "";
String[] splitter = pString.Split(',');
for (int i = 0; i < splitter.Length; i++)
{
cikti = cikti + "'" + splitter[i] + "',";
}
if (cikti.Contains(","))
{
cikti = cikti.Substring(0, cikti.LastIndexOf(","));
}
return cikti;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}
GİRDİ = Ana Bina, A-Blok, B-Blok, C-Blok
ÇIKTI = 'Ana Bina','A-Blok','B-Blok','C-Blok'