实体框架列插入的核心条件

时间:2019-06-26 07:19:03

标签: c# entity-framework-core

     protected override void Up(MigrationBuilder migrationBuilder)
    {
        migrationBuilder.CreateIndex(
            name: "BoolMe_Filtered_Index",
            table: "Records",
            column: "Records",
            filter: "([Property1]=(1),([Property2]=(1),([Property3]=(1))");
    }

我需要创建一个条件,其中BoolMe属性不能为true,除非3个属性也为true。

这使我对“,”的语法不正确。

如何实现?

或者更好

我不确定我做的方法是否正确。即使错了,我也不知道该如何用EF Core解决这个问题

0 个答案:

没有答案