Added missing DynamicQueryable and DynamicQueryableBinders class files for previous commit

This commit is contained in:
agrath@gmail.com
2011-02-06 19:53:07 -13:00
parent bcf735f4f8
commit 649a98daf4
2 changed files with 2366 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Dynamic;
namespace umbraco.MacroEngines
{
public class DynamicQueryableGetMemberBinder : GetMemberBinder
{
public DynamicQueryableGetMemberBinder(string name, bool ignoreCase) : base(name, ignoreCase) { }
public override DynamicMetaObject FallbackGetMember(DynamicMetaObject target, DynamicMetaObject errorSuggestion)
{
throw new NotImplementedException();
}
}
}