Posts by André Werlang • 111 points
2 posts
-
0
votes3
answers220
viewsA: How to enable single-model Cascade
The Cascade delete exists in two ways: the Cascade you apply to FK in the database itself and the EF Cascade. So you have the following options: 1) The traditional FK in the database with delete…
entity-framework-6answered André Werlang 111 -
1
votes2
answers1003
viewsA: Angularjs Object Sharing
Data sharing can be through service. angular.module('app').service('DadosCompartilhados', function() { this.dados = {}; }); angular.module('app').directive('diretivaA', function(DadosCompartilhados)…