Posts by Wesley Heron • 288 points
10 posts
-
1
votes0
answers36
viewsQ: Is it possible to make a related Entity possible to display with Odata Expand (Webapi)?
Hello, I have a question regarding the following situation: I have an Entity that I defined in my model as Tasfafreq public partial class TarefaFreq { [Key] public int ID { get; set; } public string…
-
4
votes1
answer836
viewsQ: SQL Server Composite Key
I have the following situation: I have a table ItensVendas where I need to apply a composite key to the fields VendedorId and ProdutoId, however I have some duplicated data, ie I can not apply the…
-
3
votes1
answer432
viewsA: How to return value to a Datetimepicker? C#
You can try to do the following: frmcadcliente.dtpData.Value = Convert.ToDateTime(pacientes_TCCDataGridView.SelectedRows[0].Cells[5].Value.ToString());
-
1
votes1
answer1641
viewsQ: Take Geolocation Coordinates (Reactjs)
Hello, I am developing a simple application that takes the geographical coordinates of the google maps api. It’s working, but I’m not getting the values that are in the other function. Actually I…
-
2
votes1
answer1104
viewsQ: Take and display data from a class attribute (class association)
I’m having a little trouble picking up a value from an attribute of the type class. Classe Pessoa public class Pessoa { public string Nome {get;set;} public int Idade {get;set;} public virtual void…
-
1
votes0
answers195
viewsQ: How to insert a chart as subreport in WPF Report Viewer
I am developing a WPF application and need to insert some charts in a report. I have created two files. RDLC one called Infographic and the other Sub-Fographic. In my subreport I would like to add a…
-
1
votes1
answer221
viewsQ: Enable WPF C# Button through a function
I have a form to fill in some data through Textbox. I have a class that has some validation functions of fields name, password, user for example. And in my Code Behind just call the function that…
-
1
votes1
answer2060
viewsQ: Grab the application folder
I have an application with all interfaces and features. In the same project I put a simple code running on console to check if there is already a database created on the machine. If not, he must…
-
1
votes1
answer782
viewsQ: Order by SQL Server under Procedure
Hello, I have the following situation: I need to select the amount of care of people of some age groups and of those who are male and female. I have the following tables: cadastro (id, natendimento,…
-
1
votes1
answer1546
viewsQ: SQL query grouping by age group
Hello, I need a way to make an sql query that brings me the amount of male and female people. OBS: I have two tables where the first one is registered in it I have the sex column and another table…