/// <summary> /// Gets the foreign keys for the given entity type that point to other entity types sharing the same view. /// </summary> public static IEnumerable <IMutableForeignKey> FindViewRowInternalForeignKeys( [NotNull] this IMutableEntityType entityType, [NotNull] string name, [CanBeNull] string schema) => entityType.FindRowInternalForeignKeys(name, schema, StoreObjectType.View).Cast <IMutableForeignKey>();