Added missing DynamicQueryable and DynamicQueryableBinders class files for previous commit
This commit is contained in:
2348
umbraco.MacroEngines.Juno/DynamicQueryable.cs
Normal file
2348
umbraco.MacroEngines.Juno/DynamicQueryable.cs
Normal file
File diff suppressed because it is too large
Load Diff
18
umbraco.MacroEngines.Juno/DynamicQueryableBinders.cs
Normal file
18
umbraco.MacroEngines.Juno/DynamicQueryableBinders.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user