How do I get randomly similar data me tried to merge different ones in the first stage but Different function does not work,
    var turler= (from x in db.bird_table_ad
                join e in db.kus_resim on x.tr_x equals e.kus_tur
                where x.aile == item 
                select new GozlemTurleri
                {
                    id = x.id,
                    kod = x.kod,
                    tr_x = x.tr_x,
                    en_x = x.en_x,
                    lt_x = x.lt_x,
                    turfotourl="image_resize.phpad="+e.altDIR+"/"+e.resim+"&yon="+(e.galeri=="fg"?"2":"HD2"),
                    aile = x.aile,
                    gfoto = x.gfoto
                }).Distinct().ToList();
