Note that there are some explanatory texts on larger screens.

plurals
  1. POC# Dataset error
    primarykey
    data
    text
    <p>I have the following code:</p> <pre><code>namespace Company.Project.DataProvider { partial class MyDataSet { partial class MyDataTable { } } } namespace Company.Project.DataProvider.MyDataSetTableAdapters { public partial class MyTableAdapter { public int CommandTimeout { set { for (int i = 0; (i &lt; this.CommandCollection.Length); i = (i + 1)) { if ((this.CommandCollection[i] != null)) { this.CommandCollection[i].CommandTimeout = value; } } } } } protected void ObjectDataSource1_ObjectCreating (object sender, ObjectDataSourceEventArgs e) { Company.Project.DataProvider.MyDataSetTableAdapters.MyTableAdapter = (Company.Project.DataProvider.MyDataSetTableAdapters.MyTableAdapter) e.ObjectInstance; // Set command timeout to 2 minutes adapter.CommandTimeout = 120; } } </code></pre> <p>When I run above code, I receive the following error:</p> <blockquote> <p>The type or namespace name 'Company' could not be found (are you missing a using directive or an assembly reference?)</p> </blockquote> <p>What is wrong in my code?</p> <hr> <p>Now that,I receive the following error.</p> <pre><code>CS1061: 'CariPeriyot.Rapor.TEST_TumRaporlar' does not contain a definition for 'CommandCollection' and no extension method 'CommandCollection' accepting a first argument of type 'CariPeriyot.Rapor.TEST_TumRaporlar' could be found (are you missing a using directive or an assembly reference?) Source Error: Line 7: set Line 8: { Line 9: for (int i = 0; (i &lt; this.CommandCollection.Length); i = (i + 1)) Line 10: { Line 11: if ((this.CommandCollection[i] != null)) </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload