Good morning,
I have the following classes:
CONSUL_CA_Aluno:
public class CONSUL_CA_Aluno
{
public int Id { get; set; }
public string Nome { get; set; }
public int Cpf { get; set; }
public string Email { get; set; }
pu...
Well, the question is this. I have a database that has the purpose of making the cash book of a company, basically this bank has a CaixaCorrido table with columns Id , PessoaNome , DataHora , Descricao , Valor...
It is very easy to get the entire code from a C # program using .NET Reflector.
Would it be possible for me to put the same security in a C # program as a program made in C ++? I found this answer in Stack Overflow in English but even in...
How do I update a specific element of a generic list by locating by ID and passing an updated object in its place, updating the name and email?
class Program
{
static void Main(string[] args)
{
List<Aluno> aluno = new Lis...
I need to save 12 entities to the same method in Controller , I do not know if I'm doing it right.
In my method Create of Controller , I call all entities and add all attributes in the same View . When you click the save button, you...
I have enum and would like to change the Description with Resource:
public enum SystemArea
{
[Description("Gestor")]
Gestor = 3,
[Description("Administrador")]
Administrador = 2,
[Description("Professor | Prof...
As this tutorial , I transported Identity in < in> class library to encapsulate the system business rule. However, the entire system is using the Fluent API to map the entities and Identity generates the tables through the code first .
I...
I have a function defined as follows:
public classeDeRetorno nomeDaFunção(string param1, string param2, string param3 = "")
What does param3 = "" mean? Does it equal the parameter to "" ?