Questions tagged [decouple]

25 questions
1
vote
2 answers

Using Linq Expressions to decouple client side from DAL (which is server side)

I could not find the answer amongst the many posts on Linq, so here I am. We have a client-server application, where the client side has absolutely no knowledge of the actual DAL on the server side, which is incidentally implemented using…
mark
  • 59,016
  • 79
  • 296
  • 580
1
vote
1 answer

Silverlight 3 Ria Services reference

I have a Silverlight project where functionality is segregated across multiple Silverlight libraries due to the size and complexity of the application. I am having problems figuring what is the best way to decouple the RIA Domain Service that gets…
RHLopez
  • 211
  • 1
  • 3
  • 10
0
votes
2 answers

How to decouple one backend service associated with a database into two separate services?

I have a big MySQL database, D_Big, with a bunch of data in it. I also have a service, S1, with APIs that read or write from this database. For example, one API might get something from the database. Another might write a row to the database. etc.…
0
votes
1 answer

what does decouple client mean?

I'm preparing for front end dev interview and was reading this blog and the author mentions that MVC provides you: Decoupled client: MVC frameworks like backbone.js incentivise you to use REST API's though their urlRoot attribute in their…
stackjlei
  • 9,485
  • 18
  • 65
  • 113
0
votes
0 answers

need to decouple the ng-model and filter

I'm new to Angularjs and I need some help. my real situation is about the ng-model and the usage of the filter: my ng-model is linked to a scope variable, and this variable is used by a filter. As soon as the ng-model detects the change, the filter…
newbie
  • 13
  • 2
  • 3
0
votes
0 answers

Bind WCF Service to an interface without a reference to WCF

I have 2 solutions, solution A and solution B. Solution A has business rules, and shouldn't know about external tecnology, no db, no wcf, etc... Solution B in the other hand have few business rules that are shared across the company and are exposed…
0
votes
1 answer

how to seperate aspnet.identity.entityframework to its own assembly

I am trying to move the appicationDBContext out of the asp.net MVC5 web application project into its own assembly. i have tried creating a class library for the data access layer and using nuget to install the aspnet.identity assemblies. I cannot…
Paul
  • 693
  • 1
  • 10
  • 25
0
votes
1 answer

how to decouple style from django form?

Our front designer (who has very weak programming experience) has trouble using attrs and so on in python code to control how form should look. Is there a recommended way of separating these concerns? I've come across a django-crispy-forms but…
eugene
  • 39,839
  • 68
  • 255
  • 489
-1
votes
2 answers

What's the most used philosophy of keeping independent concepts separate in OOP?

Or according to your own experience, what's your favorite trick ?
symfony
  • 915
  • 2
  • 13
  • 20
-1
votes
3 answers

java hide implementing class details between two layers

I am building an application that has a business logic layer which needs to access the DAO layer for all DB related stuff. My requirement is such that the DAOImpl class can keep changing so I am looking for ways in which I can get a handle to the…
user2185805
  • 255
  • 4
  • 17
1
2