Topaz Moderato has written 14 articles

Bugs filter operator StartsWith, EndsWith, Contains dan NotContains pada tipe data selain string

Pernah menemukan error No applicable method ‘ToLower’ exists in type ‘Int’ atau tipe data lainnya saat menggukan filter operator StartsWith, EndsWith, Contains dan NotContains. Untuk solution project yang sudah menggunakan template web v3 dapat mengganti file-file berikut ini: Business/Extension/TypeExtension.cs Business/Infrastructure/QueryBuilder.cs File-file di atas dapat diambil dari http://rekadia.net:81/rekadian/rekadia.template.web.git Untuk solution project yang masih menggunakan template v2…

Bugs Class GridHelper (Business Library) for Two Levels Filtering

Ada kasus saat memfilter kendo data source secara dua level, bisa lihat contoh dibawah ini: [code language=”javascript”] var filters = { logic: "and", filters: [ {//filter level 1 field: "LocationId", operator: "eq", value: locationOptions.value() }, {//filter level 2 logic: "or", filters: [ { field: "Name", operator: "contains", value: $("#filter").val() }, { field: "Number", operator: "contains",…

Synchronous vs Asynchronous Methods in ASP.NET

Synchronous Method Stopwatch application: Result: 3.506 s Google chrome benchmark: Result: 3.42 s Asynchronous Method Stopwatch application: Result: 1.143 s Google chrome benchmark: Result: 1.40 s References Tutorial can be read here Sample project can be found here Conclusion So far, a lot of attention has been paid on how to use async, but there…

Asynchronous Programming in C# (.NET Framework 4.5 or Higher)

Asynchronous Programming Asynchronous operation means that the operation runs independent of main or other process flow. In general c# program starts executing from the Main method and ends when the Main method returns. In between all the operations runs sequentially one after another. In Synchronous, one operation must wait until its previous operation finishes. Let’s…