Tell-don't-ask is an approach to object-oriented design focused on telling objects what you want them to do rather than asking them questions about their state, make a decision, and then tell them what to do.
0
votes
2answers
32 views
Using Event to apply TellDontAsk pattern
I have tried to raise event in cSharp to notify code change in my application in order to have tellDontAsk scenario.
I have simple class that implement from event class
public class ...
0
votes
1answer
95 views
Rails ActiveRecord tell don't ask
Having two classes like this:
class Site < ActiveRecord::Base
has_one :subscription, dependent: :destroy
def self.hostname_active?(hostname)
site = where(hostname: hostname)
...
0
votes
1answer
99 views
How would you implement the “tell don't ask” principle in HAML?
Here's the thing. I have a button that, depending on the scenario, will behave, look and have different text. Here's how it, roughly, looks like at the moment:
- if params[:param_A] && ...
1
vote
1answer
147 views
How to solve that last “ask” in a complex calculation to conform “tell! don't ask!”? [closed]
today i was thinking about "tell! don't ask!" and experimenting with this code.
interfaces:
interface IValidationContext
{
void AddMessage(string text);
bool IsValid { set; }
}
interface ...
1
vote
1answer
157 views
Tell, Don't Ask and Single Responsibility - doing new things with data in a class
I've got a case where "Tell, don't Ask" seems to conflict with the "Single responsibility" principle. I've looked at other discussions on the subject but not yet been able to work out the most ...
1
vote
0answers
107 views
Tell don't ask — how does it apply to this example?
As a proxy for something real I am working on, consider building a model. We'd have a Parts class representing model parts, complete with methods to manufacture the part based on given parameters, to ...
6
votes
5answers
338 views
Tell, Don't Ask Principle and Password Expiration
Trying to keep with pragmatic programming principles, I'm trying to decide on how to handle user password changes based on the "Tell, Don't Ask" principle.
I have a user object whose password expires ...
4
votes
4answers
371 views
“Tell, Don't Ask” over multiple domain objects
Question
How do I adhere to the "Tell, Don't Ask" principle when performing a function involving multiple objects.
Example - Generating a Report
I have the following objects (illustrative purposes ...
2
votes
2answers
137 views
How to unit-test in “tell, don't ask” follower classes?
I think the issue is explained best with an example.
public class MyService {
private OtherService theOther;
public void setTheOther(OtherService srv) { theOther = srv; }
public void ...
0
votes
3answers
62 views
How to test an object when I can't access state?
I have a factory class that creates an object based on a parameter it receives. The parameter is an identifier that tells it which object it should create.
Its first step is to use the data access ...
3
votes
6answers
401 views
How can I avoid getters AND avoid hard coding the UI?
I want to print a description of a warrior to the console that will include the warrior's strength and the warrior's weapon in the form This <description> warrior uses a <weapon> For ...
0
votes
2answers
243 views
Tell don't ask and shared state between tasks
In this simple example (ofcourse my real world problem is a tad more complex, although the basics are the same), how do I enforce tell dont ask to the max? Id like to maximize tell dont ask in the ...
3
votes
4answers
379 views
How to think “Tell, don't ask” in this simple example?
How would you adhere to the "Tell, don't ask" principle (henceforth "the principle") in the following simple scenario? In a Tetris game, I have Board, BlockGrid and Piece classes relevant to the ...
2
votes
2answers
499 views
Can I use mvc without getters and setters?
If I don't want to expose the state of my object, but I still need to display it (in HTML, XML or JSON let's say), how would I go about doing that in an MVC environment.
Does it make sense to have an ...
2
votes
4answers
325 views
Good case for Tell, Don't Ask
Say I have two objects:
Map
Table
At the moment I have something like this:
Map.MapTable(Table tab); <- Static MapTable method.
which checks if the table is mappable and then maps it but also ...
5
votes
3answers
682 views
Does “tell, don't ask” apply to user input validation?
I somehow must have overlooked the "tell, don't ask" OOP principle all these years because I just learned about it a couple days ago for the first time.
But the context was a discussion about ...
2
votes
5answers
613 views
Simple Scenario, How to Incorporate Tell Don't Ask?
I'm trying to model a basic scenario involving a Person and a Seat. A Person has a Status property: Sitting or Standing. A seat has a Seated property that specifies the Person that is currently ...
20
votes
5answers
2k views
Aren't Information Expert / Tell Don't Ask at odds with Single Responsibility Principle?
It is probably just me, which is why I'm asking the question. Information Expert, Tell Don't Ask, and SRP are often mentioned together as best practices. But I think they are at odds. Here is what I'm ...