KZbin spam algılayıp otomatik kaldırıyor benlik değil yani durum :)
@MJoRaYuLuN3 жыл бұрын
@@MurattYucedag yok hocam siz sildiniz düşüncesi değildi. Tekrardan yazarım o zaman
@resh.official2 жыл бұрын
ArgumentException: Entity type 'Blog' is defined with a single key property, but 0 values were passed to the 'DbSet.Find' method. boyle bir hatayla karsilasan oldu mu?
@eneskuss Жыл бұрын
GenericRepository kontrol etmeniz lazım. "return c.Set().Find(id);" bu kısımda find içerisinde id değeri verilip, verilmediğini kontrol edin.
@sherlockholmes80553 жыл бұрын
Yeni ciciler hemde 5 tane :D
@abdullahdinler2 жыл бұрын
Ödev Cevap // sweetalert delete $('.btn-outline-youtube').on('click', function (e) { e.preventDefault(); var url = $(this).attr('href'); Swal.fire({ title: 'Bloğu silmek istediğinizden emin misiniz?', text: "Bu işlem geri alınamaz!", icon: 'warning', showCancelButton: true, confirmButtonColor: '#d33', cancelButtonColor: '#3085d6', confirmButtonText: 'Evet, sil!', cancelButtonText: 'Vazgeç' }).then((result) => { if (result.value) { $.ajax({ url: url, type: 'POST', success: function (result) { if (result) { Swal.fire( 'Silindi!', 'Blog başarıyla silindi.', 'success' ).then(() => { location.reload(); }); } } }); } }); });