Posts by Gabriel Rainha • 325 points
5 posts
-
0
votes1
answer297
viewsA: How to convert Datetime type to nvarchar?
Good. everything depends on how you will use this date as String in your SP. Converting a date via Tostring will generate a string in the general long date format, whose end result varies according…
-
3
votes1
answer481
viewsA: Populate aggregate class from datatable using a Dataset with LINQ C#
You will need to iterate on each Datatable result and group the information of each Order in a dictionary indexed by your Id, in order to be able to aggregate the Order Orderdetails in the same…
-
9
votes1
answer3105
viewsA: select with limit in Firebird
SELECT FIRST 1000 * FROM tabela ORDER BY id DESC; LIMIT is an exclusive clause of Postgresql and Mysql.
-
2
votes1
answer181
viewsA: How to avoid duplication of content in a table without a primary key?
I don’t have much experience in PHP, but I do have SQL, so I’ll share my opinion: In your code, when you save a product, all colors of a product that are not present in the selected list are removed…
-
1
votes3
answers661
viewsA: How to make the text disappear from the WPF C#field
Since you’re starting out, I recommend you try to implement the functionality as the other answers suggest, just to better understand the mechanisms of the platform. When safe, check the library…