Intoduction What are guard clauses ? Guard clauses are true/false expressions (predicates) found at the top of a method or function that determine whether the function should continue to run. Guard clauses test for preconditions and either immediately return from the method or throw an exception, preventing the remaining body of code from executing. Example A common
Using Json Documents in MySQL
Introduction Before some days I started a new project with blazor. I am using a MySQL database and I tried to work somehow with json documents in MySQL. During searching, I met this gratefull page : https://www.sitepoint.com/use-json-data-fields-mysql-databases/ . Then, I decided to create a nuget package that should do the full communication between my application
A generic ‘RecyclerView Adapter’ for Xamari.Android
The idea is to create a base RecyclerView that can be used many times in your android application. To read more about the component visit this page. Let’s start! The View Holder, Let’s start with View Holder that will be also a generic one. As discribed in the documentation page of the RecyclerView mentioned in