You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#29427 is enabling primitive collection support in EF, and we're implementing that via PostgreSQL arrays. Arrays have been supported in the PG provider for a long while, but was restricted to arrays and List<T>. Since it has been decided on the EF side that we should allow mapping any IEnumerable to a primitive collection in the database, the same should be done on the PG side as well.
The text was updated successfully, but these errors were encountered:
@AndriySvyryd I opened this on this repo by mistake, this is PG work that shouldn't require anything from core. Opened npgsql/efcore.pg#2726 on the PG side for this.
#29427 is enabling primitive collection support in EF, and we're implementing that via PostgreSQL arrays. Arrays have been supported in the PG provider for a long while, but was restricted to arrays and
List<T>
. Since it has been decided on the EF side that we should allow mapping any IEnumerable to a primitive collection in the database, the same should be done on the PG side as well.The text was updated successfully, but these errors were encountered: