stringwhere=$@" where 1=1 and A.{nameof(Rb_Advertising.Group_Id)}={RB_Group_id} and A.{nameof(Rb_Advertising.Status)}=0";
if(IsFee>0)
{
where+=$@" and A.{nameof(Rb_Advertising.IsFee)}={IsFee}";
}
if(!string.IsNullOrWhiteSpace(advName))
{
where+=$@" and A.{nameof(Rb_Advertising.Title)} like '%{advName}%'";
}
stringsql=$@"select *,(SELECT count(*) from Rb_Advertising_Make where `Status`=0 and AdvertisingID=A.ID) as AdvertisingCount from {nameof(Rb_Advertising)} AS A {where} order by A.{nameof(Rb_Advertising.CreateDate)} desc";