DataObjectAttribute Costruttori

Definizione

Inizializza una nuova istanza della classe DataObjectAttribute.

Overload

DataObjectAttribute()

Inizializza una nuova istanza della classe DataObjectAttribute.

DataObjectAttribute(Boolean)

Inizializza una nuova istanza della classe DataObjectAttribute e indica se un oggetto è adatto per l'associazione a un oggetto ObjectDataSource.

DataObjectAttribute()

Origine:
DataObjectAttribute.cs
Origine:
DataObjectAttribute.cs
Origine:
DataObjectAttribute.cs

Inizializza una nuova istanza della classe DataObjectAttribute.

public DataObjectAttribute ();

Esempio

Nell'esempio di codice seguente viene illustrato l'uso del DataObjectAttribute() costruttore.

[DataObjectAttribute]
public class NorthwindData
{  
  public NorthwindData() {}

  [DataObjectMethodAttribute(DataObjectMethodType.Select, true)]
  public static IEnumerable GetAllEmployees()
  {
    AccessDataSource ads = new AccessDataSource();
    ads.DataSourceMode = SqlDataSourceMode.DataReader;
    ads.DataFile = "~//App_Data//Northwind.mdb";
    ads.SelectCommand = "SELECT EmployeeID,FirstName,LastName FROM Employees";
    return ads.Select(DataSourceSelectArguments.Empty);
  }

  // Delete the Employee by ID.
  [DataObjectMethodAttribute(DataObjectMethodType.Delete, true)]
  public void DeleteEmployeeByID(int employeeID)
  {
    throw new Exception("The value passed to the delete method is "
                         + employeeID.ToString());
  }
}

Commenti

La IsDataObject proprietà è impostata su true quando si usa il DataObjectAttribute() costruttore.

Si applica a

.NET 9 e altre versioni
Prodotto Versioni
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

DataObjectAttribute(Boolean)

Origine:
DataObjectAttribute.cs
Origine:
DataObjectAttribute.cs
Origine:
DataObjectAttribute.cs

Inizializza una nuova istanza della classe DataObjectAttribute e indica se un oggetto è adatto per l'associazione a un oggetto ObjectDataSource.

public DataObjectAttribute (bool isDataObject);

Parametri

isDataObject
Boolean

true se l'oggetto è adatto per l'associazione a un oggetto ObjectDataSource; in caso contrario, false.

Commenti

Utilizzare il DataObjectAttribute(Boolean) costruttore per indicare a una classe in fase di progettazione, ad esempio la classe che un oggetto deve essere escluso dall'elenco di oggetti appropriati per l'associazione ObjectDataSourceDesigner a un ObjectDataSource oggetto.

La IsDataObject proprietà è impostata sul valore del isDataObject parametro.

Si applica a

.NET 9 e altre versioni
Prodotto Versioni
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1