Bretttt

Results 2 issues of Bretttt

All `IEnumerable` projectable properties have to be marked as `[NotMapped]` or EF throws an error. Example: ``` [Projectable] public IEnumerable MySpecialThings => MyThings.Where(t => t.IsSpecial); ``` EF appears to be...

``` class MyClass { public string MyProperty {get; set;} } Func func = v => v.MyProperty = "I wish to assign this value"; LambdaExpression decompiled = DecompileExtensions.Decompile(func); ``` Expected body:...