System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (14)
1136/// Creates a new <see cref="DbRefExpression"/> that encodes a reference to a specific entity based on key values.
1146public static DbRefExpression CreateRef(this EntitySet entitySet, IEnumerable<DbExpression> keyValues)
1152/// Creates a new <see cref="DbRefExpression"/> that encodes a reference to a specific entity based on key values.
1162public static DbRefExpression CreateRef(this EntitySet entitySet, params DbExpression[] keyValues)
1168/// Creates a new <see cref="DbRefExpression"/> that encodes a reference to a specific entity of a given type based on key values.
1180public static DbRefExpression CreateRef(this EntitySet entitySet, EntityType entityType, IEnumerable<DbExpression> keyValues)
1186/// Creates a new <see cref="DbRefExpression"/> that encodes a reference to a specific entity of a given type based on key values.
1198public static DbRefExpression CreateRef(this EntitySet entitySet, EntityType entityType, params DbExpression[] keyValues)
1203private static DbRefExpression CreateRefExpression(EntitySet entitySet, IEnumerable<DbExpression> keyValues)
1210private static DbRefExpression CreateRefExpression(EntitySet entitySet, EntityType entityType, IEnumerable<DbExpression> keyValues)
1218/// Creates a new <see cref="DbRefExpression"/> that encodes a reference to a specific Entity based on key values.
1231public static DbRefExpression RefFromKey(this EntitySet entitySet, DbExpression keyRow)
1238/// Creates a new <see cref="DbRefExpression"/> that encodes a reference to a specific Entity based on key values.
1253public static DbRefExpression RefFromKey(this EntitySet entitySet, DbExpression keyRow, EntityType entityType)