I have the following extension method which asserts that a property (Id) contains a specified attribute (TV):

public static void ShouldHave<T, TV, TT>(this T obj, Expression<Func<T, TT>> exp) {...}

The method can be called like this:

MyDto myDto = new MyDto();
myDto.ShouldHave<MyDto, RequiredAttribute, int>(x => x.Id);

Compiles just fine. I was wondering if it is possible to remove T and TT from the method signature. T because ShouldHave is called on T why it shouldn't be necessary to specify it explicitly. And TT is the type of the property referenced in the expression (x.Id).

link|improve this question
What's the point of TV (the second generic parameter)? – Jeff Mercado Jun 14 '11 at 10:51
It's the type of the required attribute. – ba__friend Jun 14 '11 at 10:53
@ba__friend: Look again, there's three of 'em. – Jeff Mercado Jun 14 '11 at 10:56
I know, but look at his call definition and then read the first sentence of his post. TV => Attritube to match. – ba__friend Jun 14 '11 at 10:58
@ba__friend: That's more likely a typo. There are three parameters, two of them (T and TT) are used in the signature. TV is completely unnecessary in this context. – Jeff Mercado Jun 14 '11 at 11:02
show 5 more comments
feedback

3 Answers

up vote 1 down vote accepted

Automatic inference of type arguments only works if no generic arguments are specified in the method call. I.e., this:

myDto.ShouldHave<, RequiredAttribute, >(x => x.Id);

is not valid syntax. You can either have "all or nothing".

Thus, if you want to infer T and TT, you need to pass the information currently contained in TV in some other way. For example, one option would be to pass the type of the attribute as a parameter:

public static void ShouldHave<T, TT>(this T obj, 
                                     Expression<Func<T, TT>> exp, 
                                     Type attribute) {...}

(Obviously, this will require changes in your implementation of ShouldHave).

Then you should be able to call the method like this:

MyDto myDto = new MyDto();
myDto.ShouldHave(x => x.Id, typeof(RequiredAttribute));
link|improve this answer
I choose your proposal with a slight modification: public static void ShouldHave<T, TT>(this T obj, Expression<Func<T, TT>> exp, params Type[] attributes) – ThomasArdal Jun 16 '11 at 5:59
feedback

The following compiles:

public static void ShouldHave<T, TT>(this T obj, Expression<Func<T, TT>> exp)
{...}

MyDto myDto = new MyDto();
myDto.ShouldHave(x => x.Id);

This omits the TV type argument, which is the reason for your need to explicitly specify the generic arguments at the call site. If you need this argument then you’re out of luck.

link|improve this answer
But T and TT are not removed – oliholz Jun 14 '11 at 10:54
1  
@oliholz Yes they are, at the call site. Who cares whether they are still necessary in the definition? – Konrad Rudolph Jun 14 '11 at 10:55
ah okay, got it. – oliholz Jun 14 '11 at 10:57
feedback

Try this:

public static void ShouldHave<TV>(this object obj, Expression<Func<object, object>> exp) {...}

You should find that exp now consists of the real expression surrounded by a cast to object. Inside your method, strip off the cast as follows:

Expression realExp = ((UnaryExpression) exp).Operand;

Then you can start analysing the expression. You will have to do more runtime tests and safety checks than your original method though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.