I really can't figure this one out...

DISCLAIMER: basic knowledge of Entity Framework might be required in order to understand some of the code shown in this question.

I'm trying to achieve the following result using reflection:

_builder.Entity<Post>().HasKey(p => p.Id);

Let me introduce the variables... _builder is of type DbModelBuilder and Post has a property Id of type Guid.

In the code below, contentType wraps a System.Type :

var config = _builder.GetType()
    .GetMethod("Entity")
    .MakeGenericMethod(contentType.Type)
    .Invoke(_builder, null);

var hasKey = config.GetType().GetMethod("HasKey");

var expressionKey = typeof(Expression<>)
    .MakeGenericType(typeof(Func<,>)
    .MakeGenericType(contentType.Type, typeof(Guid)));

var paramEx = Expression.Parameter(contentType.Type, "t");
var lambdaEx = Expression.Lambda(Expression.Property(paramEx, "Id"), paramEx);

hasKey.MakeGenericMethod(typeof(Guid))
    .Invoke(_builder, new[] { lambdaEx });

HasKey definition might help:

public EntityTypeConfiguration<TEntityType> HasKey<TKey>(Expression<Func<TEntityType, TKey>> keyExpression);

... where TEntityType should be of type Post and TKey of type Guid ...

Exception of type TargetException is thrown (on the last call to Invoke above) :

Object does not match target type.

I have tried every idea I could come up with and still I can't match the target type.

Any help is appreciated, Sincerely,
Max

link|improve this question

Not to be blond here, but shouldnt your last invoke's instance parameter be config rather than _builder? :) – Polity Oct 19 '11 at 3:24
OMG! please answer officially – maxbeaudoin Oct 19 '11 at 3:25
And I cced JonSkeet on Twitter :'( – maxbeaudoin Oct 19 '11 at 3:27
Just curious since i find the idea intriguing. Are you trying to to create some kind of dynamic EF ModelBuilder? – Polity Oct 19 '11 at 3:28
haha Skeet is still sleeping, allowing me to gain some points ;) – Polity Oct 19 '11 at 3:28
show 5 more comments
feedback

2 Answers

up vote 2 down vote accepted

In your last call to Invoke, you specified the wrong instance parameter. Should be 'config' rather than '_builder'

link|improve this answer
I guess this question is now a how-to. Back to work! Thanks Polity :) – maxbeaudoin Oct 19 '11 at 3:28
feedback

Silly me, I have no excuses... Sorry for troubling @JonSkeet and many thanks to Polity.

How-to Entity Framework & Reflection:

var config = _builder.GetType()
    .GetMethod("Entity")
    .MakeGenericMethod(contentType.Type)
    .Invoke(_builder, null);

var hasKey = config.GetType().GetMethod("HasKey");

var expressionKey = typeof(Expression<>)
    .MakeGenericType(typeof(Func<,>)
    .MakeGenericType(contentType.Type, typeof(Guid)));

var paramEx = Expression.Parameter(contentType.Type, "t");
var lambdaEx = Expression.Lambda(Expression.Property(paramEx, "Id"), paramEx);

hasKey.MakeGenericMethod(typeof(Guid))
    .Invoke(config, new[] { lambdaEx });
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.