/// <summary> /// Creates an id for the SQL query mapped using <see cref="M:RelationalEntityTypeBuilderExtensions.ToSqlQuery" />. /// </summary> /// <param name="entityType"> The entity type. </param> /// <returns> The SQL query id. </returns> public static StoreObjectIdentifier SqlQuery(IReadOnlyEntityType entityType) { Check.NotNull(entityType, nameof(entityType)); return(new StoreObjectIdentifier(StoreObjectType.SqlQuery, entityType.GetDefaultSqlQueryName())); }