You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2019. It is now read-only.
Hello, after upgrade to version 0.3.0 it seems every lazy loaded collection crash on FilterQueryVisitor class at this line
public override DbExpression Visit(DbScanExpression expression)
{
// a bit harder to get the metadata in CSpace
var item = expression.Target.ElementType.MetadataProperties.First(p => p.Name == "Configuration");
...
}
with the exception "Sequence contains no matching element".
At the moment i'm using EntityFramework.Filters to implement soft delete on entity that use IDeferredDeletion interface. The filters are configured in this way:
Hello, after upgrade to version 0.3.0 it seems every lazy loaded collection crash on FilterQueryVisitor class at this line
with the exception "Sequence contains no matching element".
At the moment i'm using EntityFramework.Filters to implement soft delete on entity that use IDeferredDeletion interface. The filters are configured in this way:
then to enable or disable the filters from the UnitOfWork class:
With version 0.2 everything works properly. With 0.3 i need to change the configuration or is it a bug?
Bye Bye