I have a configuration like this in my codes:
builder.HasMany(c => c.Libs)
.WithOne(x=>x.Book)
.HasForeignKey(x=>x.BookId)
.OnDelete(DeleteBehavior.NoAction); <<-------- Here
My question is what is different between NoAction and Restrict value?
I read Microsoft document and descriptions of both of them are same!!!
