I'm trying to return the following sql query but to no avail.
SQL=
select IDEstado, COUNT(IDEstado) from PessoaEstado w
join Nucleo.dbo.Estado e on e.ID = w.IDEstado
where IDPessoaMaster = 46
group by IDEstado
Code=
var dbApp = new App();
v...
I'm having the following error when running my app in Visual Studio 2017:
max res 25, skipping mipmap-anydpi-v26
I researched here on the internet and found nothing that could help me solve it. Does anyone know a solution or what does it...
I have the following enum:
public enum RegiaoEnum
{
CENTRO = 1,
NORTE = 2,
SUL = 3,
SUDESTE = 4,
CENTROOESTE = 5
}
And the following View:
@using MeuDominio.Enums;
<div class="animate">
<table ng-table="vm....
I'm having problems at the time of editing, more specifically in the line below,
db.Entry (ladA) .State = EntityState.Modified;
db.SaveChanges ();
The update that precedes the above lines usually occurs, where I indicate below....
I'm trying to create a struct that has one of its attributes having its dynamic or varied data type, I need (when running the struct constructor) to define its data type, and it should be the same as the native one because when I I'm trying to d...
I have a table in SQL Server that makes the control of messages to be sent and a routine in C# , configured in a Cron, that selects the pending messages, sends and marks as sent.
What I'm implementing is the ability to configure...
I'm creating an application with WebBrowser component in C # but when I run the following code it returns me a JavaScript error and does not run my other application that was developed in Adobe Flex:
private void chamaPagina(string tipo)
{...
How to leave my GridView c # in the middle of the screen?
I've tried putting it in a div and alrib = aling center =
but it did not work out.
Does anyone have a suggestion?
<asp:GridView ID="GridView1" runat="server" CellPadding="4"...
Follow the code for how I create Accordion
private void CarregaAccordionCarros()
{
//DataTable da Consulta
var dtTable = GetDataCarro();
AjaxControlToolkit.Accordi...