Posts by rkawano • 156 points
2 posts
-
1
votes3
answers606
viewsA: Correct Inheritance in Entity Framework
Supposing that you have: class DadosCliente { public string Nome { get; set; } public string Telefone { get; set; } } class DadosClientePF : DadosCliente { public string CPF { get; set; } } class…
-
3
votes1
answer897
viewsA: Ontextchanged called several times - autopostback
In Webforms, you have a form with several controls. When you set the autopostback on one of the controls, it means that the entire form will be posted when one of the assimilated events occurs in…