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解决这个问题