8 references to CommandTextAttribute
System.Data.Entity (6)
System\Data\Common\CommandTrees\ExpressionBuilder\Internal\ArgumentValidation.cs (1)
1478
if (!String.IsNullOrEmpty(function.
CommandTextAttribute
) && !function.HasUserDefinedBody)
System\Data\Metadata\Edm\EdmFunction.cs (1)
151
return this.IsModelDefinedFunction && !String.IsNullOrEmpty(this.
CommandTextAttribute
);
System\Data\Metadata\EdmItemCollection.cs (1)
467
function.
CommandTextAttribute
,
System\Data\Metadata\StoreItemCollection.cs (1)
408
CommandText = sTypeFunction.
CommandTextAttribute
,
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
448
if (String.IsNullOrEmpty(function.
CommandTextAttribute
))
477
return function.
CommandTextAttribute
;
System.Data.Entity.Design (2)
System\Data\Entity\Design\Common\MetadataItemSerializer.cs (2)
199
if(function.
CommandTextAttribute
!= null)
202
_writer.WriteAttributeString(XmlConstants.CommandText, function.
CommandTextAttribute
);