9 references to TranslatorArg
System.Data.Entity (9)
System\Data\Common\Internal\Materialization\Translator.cs (9)
216
columnMap.Accept(translator, new
TranslatorArg
(typeof(IEnumerable<>).MakeGenericType(typeof(TRequestedType))));
906
Expression keyReader = entityIdentity.Keys[i].Accept(translator, new
TranslatorArg
(typeof(object))).Expression;
932
Expression discriminator = discriminatedEntityIdentity.EntitySetColumnMap.Accept(translator, new
TranslatorArg
(typeof(int?))).Expression;
1140
TranslatorResult result = columnMap.Accept(translator, new
TranslatorArg
(type));
1375
Expression valueReader = columnMap.Properties[i].Accept(this, new
TranslatorArg
(propertyType)).Expression;
1497
discriminatorReaders[i] = columnMap.TypeDiscriminators[i].Accept(this, new
TranslatorArg
(typeof(object))).Expression;
1615
Expression propertyReader = columnMap.Properties[ordinal].Accept(this, new
TranslatorArg
(typeof(Object))).Expression;
1677
TranslatorResult propertyReader = propertyColumnMap.Accept(this, new
TranslatorArg
(type));
1834
Expression elementReader = elementColumnMap.Accept(this, new
TranslatorArg
(elementType)).UnconvertedExpression;