Entity Framework 6. Миграция edmx DbFunctions для кодирования в первую очередь - PullRequest
0 голосов
/ 28 сентября 2018

Мы переходим от подхода DataBase сначала к Code сначала для Entity Framework 6. У нас есть модель

public class Parent
{
    public virtual  int Id { get; set; }
    public virtual DateTimeOffset DateFrom { get; set; }
    public virtual DateTimeOffset DateTo { get; set; }
    //navigation property
    public virtual ICollection<Child> Cildren { get; set; }
}

public class Child {
    public int Id { get; set; }
    public DateTimeOffset DateFrom { get; set; }
    public DateTimeOffset DateTo { get; set; }
    //navigation property
    public virtual Parent Parent { get; set; }
}

У нас в edmx есть несколько подобных функций (но немного сложных, функции вызывают друг друга)

    <Function Name="IsParentActive" ReturnType="Edm.Boolean">
      <Parameter Name="Parent" Type="MyContext.Parent" />
      <Parameter Name="time" Type="Edm.DateTimeOffset" Nullable="false" />
      <DefiningExpression>
        (Parent.DateFrom &lt;= time) AND (Parent.DateTo &gt; time)
      </DefiningExpression>
    </Function>

   <Function Name="IsChildActive" ReturnType="Edm.Boolean">
      <Parameter Name="Child" Type="MyContext.Child" />
      <Parameter Name="time" Type="Edm.DateTimeOffset" Nullable="false" />
      <DefiningExpression>
        (Child.DateFrom &lt;= time) AND (Child.DateTo &gt; time) AND
           MyContext.IsParentActive(Child.Parent, time)
      </DefiningExpression>
    </Function>

в коде C # у нас есть следующее отображение

[DbFunction("MyContext", "IsParentActive")]
public static bool IsActive(this Parent parent, DateTimeOffset time) {
  return time >= parent.DateFrom && time < parent.DateTo
}

[DbFunction("MyContext", "IsChildActive")]
public static bool IsActive(this Child child, DateTimeOffset time) {
  return time >= child.DateFrom && time < child.DateTo
     && child.Parent.IsActive(time);
}

И мы можем использовать его в IQueryable в любом месте

var result = context.Parents.Where(p => p.IsActive(time));
var result = context.Parents.Where(p => p.Cildren.Any(c => !c.IsActive(time));
var result = context.Cildren.Where(p => p.Parent.IsActive(time));

Теперь я не могу найти хороший способчтобы заменить этот подход.

Я пытался использовать функции C # с выражением, но они не применимы в подзапросах (context.Cildren.Where (p => p.Parent.IsActive (time)))

...