Posts made by lahirunc
-
RE: Flutter firebase with GetX 2021 Tutorial
@root yeah bro been busy
-
Todo App - Flutter firebase with GetX Series
Simple todo app tutorial series using flutter, firebase and GetX. This video series will consist of
- CRUD functionalities between flutter and firebase
- GetX state management
- Introduction/onboarding screen
-
Flutter firebase with GetX 2021 Tutorial
State management with flutter made easy...
-
RE: React Native with Redux Middlewares
who's coming to this event today?
-
RE: How to save Check Box value/Radio Button Value into SQL Server Database using C#
@tnlthanzeel You can do it by only using this
command.Parameters.AddWithValue("@CheckBoxChecked", chkbox.IsChecked);
Other one was for knowledge purposes.
-
RE: How to save Check Box value/Radio Button Value into SQL Server Database using C#
@tnlthanzeel well there's nothing wrong with @nowferrifkan nor mine. But if you ask the most efficient way?
Then I would suggest mine as there's no point in assigning a value which is already boolean to string using tertiary if. That just produce messy code. You can convert using
.toString()
eg:-
chkbox.IsChecked.toString();
-
RE: How to save Check Box value/Radio Button Value into SQL Server Database using C#
@tnlthanzeel well it's just for the better understanding.
@CheckBoxChecked
isParamNameHere
andvaluehere
ischkbox.IsChecked
value.