jiniux
jiniux
CC#
Created by Addanbillis on 6/30/2024 in #help
✅ Console app makes another app
no need to compile. just embed the exe in the program resources, write it to a temp path and then launch it
10 replies
CC#
Created by KidKai25 on 6/28/2024 in #help
✅ Is it a good idea to store CSS class as a property in my C# model?
don't do that. in case you'll decide to apply more complex restyling, everything will fall apart
14 replies
CC#
Created by Adam on 6/27/2024 in #help
Structure of system with polymorphism
perhaps you want to use the visitor pattern https://refactoring.guru/design-patterns/visitor
21 replies
CC#
Created by Sekoree on 6/21/2024 in #help
Every HttpClient request has a 5 second delay before execution
are you sure that it is not the server the cause of the delay?
29 replies
CC#
Created by Dalia on 6/9/2024 in #help
strategy design pattern on discount
context?
7 replies
CC#
Created by Eve. on 4/28/2024 in #help
✅ Checking data from SQL database
UserDetailsBindingSource.DataSource = userDetails.DAO.UserConfirmed(userDetails)
108 replies
CC#
Created by Eve. on 4/28/2024 in #help
✅ Checking data from SQL database
probably pinged me because i helped them some days ago
108 replies
CC#
Created by Eve. on 4/28/2024 in #help
✅ Checking data from SQL database
what is the problem?
108 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
🫡
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
if you want from the cheapest to the pricest, you do order by price asc
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
order by price desc will order the elements in the output list from the pricest to the cheapest
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
sorry i missed a thing xD
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
and you will get the first item of the list
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
SELECT * FROM ram WHERE price <= (@search * 0.4) order by price desc
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
it will return a list
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
in any case this query will not return just one output
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
it is unclear what you wanna do here
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
SELECT * FROM ram WHERE price <= (@search * 0.4) perhaps something like this
148 replies
CC#
Created by Eve. on 4/23/2024 in #help
how do you search a database for an integer with the @search
that is not valid sql.. why is @search there
148 replies