6 references to ValueFromObject
System.Data.Linq (6)
SqlClient\Common\SqlFactory.cs (2)
481return ValueFromObject(value, clrType, isClientSpecified, sourceExpression); 494return ValueFromObject(null, type, false, sourceExpression);
SqlClient\Query\QueryConverter.cs (3)
351return this.sql.ValueFromObject(invokeResult, invoke.Type, true, this.dominatingExpression); 805return sql.ValueFromObject(cons.Value, type, true, this.dominatingExpression); 1788List<SqlExpression> list = values.OfType<object>().Select(v => sql.ValueFromObject(v, elemType, true, this.dominatingExpression)).ToList();
SqlClient\Query\SqlMethodCallConverter.cs (1)
2479pattern = sql.ValueFromObject(patternText, typeof(string), true, source);