I'm having some trouble with generics and casting in C#... - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:10:56Zhttp://stackoverflow.com/feeds/question/573584http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/573584/im-having-some-trouble-with-generics-and-casting-in-c0I'm having some trouble with generics and casting in C#...JC Grubbs2009-02-21T19:12:39Z2009-02-21T19:40:40Z
<p>So I have a simple validation rule pattern that I'm using to do validation on entity objects. Here is my ValidationRule class:</p>
<pre><code>public class ValidationRule {
public Func<object, bool> Rule { get; set; }
public string ErrorMessage { get; set; }
public ValidationRule(string errorMessage, Func<object, bool> rule) {
Rule = rule;
ErrorMessage = errorMessage;
}
public bool IsValid(object obj) {
return Rule(obj);
}
}
</code></pre>
<p>I have a base class for my entity objects that encapsulate the methods to perform validation that looks like this:</p>
<pre><code>public abstract class ModelBase {
private List<ValidationRule> _validationRules;
public List<ValidationRule> ValidationRules {
get {
if (_validationRules == null)
_validationRules = new List<ValidationRule>();
return _validationRules;
}
set { _validationRules = value; }
}
public ValidationResult Validate() {
var result = new ValidationResult();
rules.ForEach(r => {
if (!r.IsValid(this))
result.Errors.Add(
new ValidationError(r.ErrorMessage, r.PropertyName));
});
return result;
}
}
</code></pre>
<p>And now here's the real problem I'm trying to solve. When I create a new class that inherits from ModelBase adding validation rules is a little awkward. For example:</p>
<pre><code>public class Client : ModelBase {
public int ID{ get; set; }
public string Name { get; set; }
public Address MailingAddress { get; set; }
public Client() {
CreateValidationRules();
}
private void CreateValidationRules() {
ValidationRules.Add(new ValidationRule("Client 'Name' is required.",
c => !string.IsNullOrEmpty(((Client)c).Name)));
}
}
</code></pre>
<p>Notice where I'm creating the validation rules list. Inside the lambda expression I have to cast "c" to "Client" because my rule is essentially <code>Func<object, bool></code>. I've tried many ways to make this generic by doing something like <code>ValidationRule<Client></code> but I always run into problems with calling <code>Validate()</code> in the ModelBase class. Any ideas on how to get around this casting?</p>
http://stackoverflow.com/questions/573584/im-having-some-trouble-with-generics-and-casting-in-c/573591#5735911Answer by Jon Skeet for I'm having some trouble with generics and casting in C#...Jon Skeet2009-02-21T19:17:00Z2009-02-21T19:17:00Z<p>I suspect that ModelBase needs to become generic too. It's not clear to me exactly what's going on here though - aren't the validation rules going to be the same for <em>every</em> Client? Validation rules feel like they should be associated with a whole type, not to individual instances of a type. They'd be <em>validated</em> against a single instance, admittedly.</p>
<p>I wonder whether you shouldn't have a <code>Validator<T></code> type, and create (once) a <code>Validator<Client></code> which can then be validated against any instance of <code>Client</code>.</p>
http://stackoverflow.com/questions/573584/im-having-some-trouble-with-generics-and-casting-in-c/573612#5736123Answer by Guffa for I'm having some trouble with generics and casting in C#...Guffa2009-02-21T19:33:52Z2009-02-21T19:40:40Z<p>You can make the ValidationRule class generic, but leave the parameter for the IsValid method as object and do the casting in the method. That way you get the generics without having to make ModelBase generic also.</p>
<p>You also need an interface for the ModelBase to be able to keep a list of validation rules without knowing their actual type. Then just change the type of the list and the property in ModelBase to IValidationRule.</p>
<p>(Note: You can use a private setter on the properties to make them read-only.)</p>
<pre><code>public Interface IValidationRule {
bool IsValid(object);
}
public class ValidationRule<T> : IValidationRule {
public Func<T, bool> Rule { get; private set; }
public string ErrorMessage { get; private set; }
public ValidationRule(string errorMessage, Func<object, bool> rule) {
Rule = rule;
ErrorMessage = errorMessage;
}
public bool IsValid(object obj) {
return Rule((T)obj);
}
}
</code></pre>
<p>Now, the type of the parameter in the lamda expression is the generic type, so you don't have to cast it:</p>
<pre><code>ValidationRules.Add(
new ValidationRule<Client>(
"Client 'Name' is required.",
c => !string.IsNullOrEmpty(c.Name)
)
);
</code></pre>