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