I'm creating an application in C # and I'm using the INotifyPropertyChanged interface like this:
public class Test: INotifyPropertyChanged
{
private int foo;
public int Foo { get => foo; set => Set(ref foo, value); }...
I have a .net core project on bitbucket and I use visual studio 2017 to do the operations next to the repository.
The problem is that even though I have not made any changes to the project, when I give rebuild it identifies 90 files on th...
This is my embed code. Why does it make a mistake? What should I do?
public int abreOsParceiro(string os, string cnpj, string dataAbertura, string dataVisita, string tecnico)
{
WEBEntities db = new WEBEntities();...
In my entity mapping, the fields that are FK look like this:
public virtual T_Acao T_Acao { get; set; }
public virtual ICollection<T_OsParceiro> T_OsParceiro { get; set; }
public virtual T_ProximaAcao T_ProximaAcao { get; set; }
In my...
With LINQ without problems. Now, how do I join with two or more tables? Below the join attempt I could not go through to the end. Two tables ( T_Acao and T_ProximaAcao ). Field in join is IDAcao
var res...
When I give savechanges() , it writes to all tables and I would like only one. How I do? The Acao and ProximaAcao tables also inserts log.
public T_TarefaParceiro geraIdParceiro()
{
WEBEntities db = new WEBEntities();...
Good morning,
I created using UnmanagedExports a dll in C # (Visual Studio 2010) to be consumed in a form delphi 5, as follows:
C #:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
usin...
I created a COM DLL in C # VS2010 to be distributed with another application in Delphi.
This DLL only consumes in WEB Services.
On the machine where the DLL was built, there is no error. But in the distribution when the DLL methods are exec...
I have a question in the ASP.Net MVC application:
Structure
Views
|
+-- Home
| |
| +-- Index.cshtml
| |
| +-- Page.cshtml
|
+-- Users
| |
| +-- Details.cshtml...