Posts by Gilmar Borges • 1 point
5 posts
-
-3
votes1
answer21
viewsQ: Sql server heritage in Procedure
I’m having performance problems using views mapped in the EPH to use linq for grouping and paging. It would have a way to assemble a procedure basis, where I explained what it would take for all the…
-
0
votes2
answers59
viewsA: Error clicking button to save data to database
You can use it as the comment you made, or in this way I will show you, because it may happen that the contents of the string are not a valid date, so avoiding errors is a good practice: string str…
-
0
votes2
answers44
viewsA: Run method in Form1 for form2 change
As a first step, instead of making new Form1(), at the time Voce makes new Form2(), it passes by parameter the listView_Cliente, so Voce will be passing by reference (when passing an object per…
-
0
votes1
answer179
viewsA: SQL server field xml filter for a field with namespace
I found out what it’s like: just put *:<nome do elemento>, so filter by any namespace, have to 'name' the namespace, but for my case it was only filter by the same element.…
-
0
votes1
answer179
viewsQ: SQL server field xml filter for a field with namespace
i tried via seq to filter a record that had an xml field, with this xml below: <ns1:Prod xmlns:ns1="uri"> <ns1:ProductID>316</ns1:ProductID> <ns1:Name>Blade</ns1:Name>…