2 implementations of CommandText
System.Data.Common (1)
System\Data\Common\DbCommand.cs (1)
20public abstract string CommandText { get; set; }
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
21public override string CommandText { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
1 reference to CommandText
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
314if (DesignMode && ((null == command) || (null == command.Connection) || string.IsNullOrEmpty(command.CommandText)))