var icerikler1 = (from x in data.Tbl_Iceriklers
where x.ust_kategori_id == 96
select x).OrderByDescending(a => a.ID).Take(4);
I have pulled content of the last 4 ,then connect to repeater.I have no problem here.But,I want to be
ust_kategori_id == 96 of the first two records.
Finally,I want to be ust_kategori_id == 95 of the another two records.
How can I do that?