Hello, I have 4 class Cliente , Locacao , Item and Cacamba :
public class Cliente
{
public Guid ClienteID { get; set; }
public string Nome { get; set; }
...............
}
public class Locacao
{
public Guid L...
I'm trying to implement a data solution that first displays the values that have the passed parameter and then pass the other parameters.
Example:
In a product table you have the following data:
Coca-Cola -> Coca Cola Company
Pepsi...
I'm trying to make a 1 to 1 ratio. Apparently it would be something simple but my system is getting lost in this relationship;
It does not make a mistake, but the relationship is wrong:
Model:
public class CieloRecorrencia
{
[Key...
I started an ASP.NET MVC project and initially I used git for code control, but now I want to transfer to Team Foundation Services, how do I unlink my git project?
I do not want these sent items to appear in the real estate email.
string emailOrigem = imobiliaria.Email;
string password = imobiliaria.Senha;
string html = getBody(dados); //aqui serve pra formata o html...
I've implemented a class to send password recovery email, but the email is not sent.
Code class sends email:
public static Task EnviaEmail(string email, string assunto, string mensagem)
{
var MinhaMensagem = new SendGridMessage(...
I'm doing an Entity Framework online course in which the course uses Visual Studio in the 2012 Express version, since I'm using Visual Studio Enterprise 2015. And during the course it asks to create a new data called " service based database "....
I created a custom attribute, called ToolTip. I would like to add tooltips on every property that has this attribute.
Example:
In my model I have the following property:
[Required, ToolTip("Neste campo você deve inserir um nome.")]
pub...
I found this package, but I do not know how to use it:
Microsoft ASP.NET MVC English-BR Features
Microsoft.AspNet.Mvc.us
link
How do I use the features of this package?