1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
namespace SampleEntityFrameworkProvider
{
public partial class SampleCommand : DbCommand
{
internal DbCommand _WrappedCommand = new SqlCommand();
public SampleCommand()
{
}
public SampleCommand(string commandText)
{
this.InitializeMe(commandText, null, null);
}
public SampleCommand(string commandText, SampleConnection connection)
{
this.InitializeMe(commandText, connection, null);
}
public SampleCommand(string commandText, SampleConnection connection, DbTransaction transaction)
{
this.InitializeMe(commandText, connection, transaction);
}
private void InitializeMe(string commandText, SampleConnection connection, DbTransaction transaction)
{
this.CommandText = commandText;
this.Connection = connection;
this.Transaction = transaction;
}
public override void Cancel()
{
this._WrappedCommand.Cancel();
}
public override string CommandText
{
get
{
return this._WrappedCommand.CommandText;
}
set
{
this._WrappedCommand.CommandText = value;
}
}
public override int CommandTimeout
{
get
{
return this._WrappedCommand.CommandTimeout;
}
set
{
this._WrappedCommand.CommandTimeout = value;
}
}
public override CommandType CommandType
{
get
{
return this._WrappedCommand.CommandType;
}
set
{
this._WrappedCommand.CommandType = value;
}
}
protected override DbParameter CreateDbParameter()
{
return this._WrappedCommand.CreateParameter();
}
private SampleConnection _Connection = null;
protected override DbConnection DbConnection
{
get
{
return this._Connection;
}
set
{
this._Connection = (SampleConnection) value;
this._WrappedCommand.Connection = this._Connection._WrappedConnection;
}
}
protected override DbParameterCollection DbParameterCollection
{
get { return this._WrappedCommand.Parameters; }
}
private DbTransaction _Transaction = null;
protected override DbTransaction DbTransaction
{
get
{
return this._Transaction;
}
set
{
this._Transaction = value;
this._WrappedCommand.Transaction = this._Transaction;
}
}
private bool _DesignTimeVisible = true;
public override bool DesignTimeVisible
{
get
{
return this._DesignTimeVisible;
}
set
{
this._DesignTimeVisible = value;
}
}
protected override DbDataReader ExecuteDbDataReader(CommandBehavior behavior)
{
return this._WrappedCommand.ExecuteReader(behavior);
}
public override int ExecuteNonQuery()
{
return this._WrappedCommand.ExecuteNonQuery();
}
public override object ExecuteScalar()
{
return this._WrappedCommand.ExecuteScalar();
}
public override void Prepare()
{
this._WrappedCommand.Prepare();
}
public override UpdateRowSource UpdatedRowSource
{
get
{
return this._WrappedCommand.UpdatedRowSource;
}
set
{
this._WrappedCommand.UpdatedRowSource = value;
}
}
}
}
|