I am working with Moles and mocking a System.Data.Linq.Table.

I got it constructing fine, but when I use it, it wants IQueryable.Provider to be mocked (moled) as well.

I just want it to use normal Linq To Objects. Any idea what that would be?

Here is the syntax I can use:

MTable<User> userTable = new System.Data.Linq.Moles.MTable<User>();
userTable.Bind(new List<User> { UserObjectHelper.TestUser() });

// this is the line that needs help
MolesDelegates.Func<IQueryProvider> provider = //Insert provider here!
                                                             ^
userTable.ProviderSystemLinqIQueryableget = provider         |
                                                             |
                                                             | 
what can I put here? ----------------------------------------+
link|improve this question

75% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Simplest would be a List<T> which can be used as IQueryable<T> via .AsQueryable().

MolesDelegates.Func<IQueryProvider> provider = () => userLinqList.AsQueryable().Provider;

That's what I use as a in memory database to mock out Linq2Sql. Simple and elegant.

link|improve this answer
MolesDelegates.Func<IQueryProvider> provider = new List<User>(); says that List<T> does not convert to MolesDelegates.Func<IQueryProvider> – Vaccano Feb 11 '10 at 17:17
MolesDelegates.Func<IQueryProvider> provider = new List<User>().AsQueryable().Provider – Johannes Rudolph Feb 11 '10 at 17:38
Thanks for the tip. The syntax turned out to be: MolesDelegates.Func<IQueryProvider> provider = () => userLinqList.AsQueryable().Provider; – Vaccano Feb 11 '10 at 19:28
yeah, glad you could figure it out. I am on the road atm and SO is terrible on iPhone :-) – Johannes Rudolph Feb 12 '10 at 5:55
feedback

The simple solution would be to bind the list.AsQueryable() to the table. The IQueryable methods would automatically be rerouted to the list.

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.