DataObjectAttribute コンストラクター

定義

DataObjectAttribute クラスの新しいインスタンスを初期化します。

オーバーロード

DataObjectAttribute()

DataObjectAttribute クラスの新しいインスタンスを初期化します。

DataObjectAttribute(Boolean)

DataObjectAttribute クラスの新しいインスタンスを初期化し、オブジェクトが ObjectDataSource オブジェクトへのバインドに適しているかどうかを示します。

DataObjectAttribute()

ソース:
DataObjectAttribute.cs
ソース:
DataObjectAttribute.cs
ソース:
DataObjectAttribute.cs

DataObjectAttribute クラスの新しいインスタンスを初期化します。

public:
 DataObjectAttribute();
public DataObjectAttribute ();
Public Sub New ()

次のコード例では、 コンストラクターの使用方法を DataObjectAttribute() 示します。

[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());
  }
}
<DataObjectAttribute()> _
Public Class NorthwindData

  <DataObjectMethodAttribute(DataObjectMethodType.Select, True)> _
  Public Shared Function GetAllEmployees() As IEnumerable
    Dim ads As 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)
  End Function 'GetAllEmployees

  ' Delete the Employee by ID.
  <DataObjectMethodAttribute(DataObjectMethodType.Delete, True)> _
  Public Sub DeleteEmployeeByID(ByVal employeeID As Integer)
    Throw New Exception("The value passed to the delete method is " + employeeID.ToString())
  End Sub

End Class

注釈

コンストラクターをIsDataObject使用する場合、 プロパティは にDataObjectAttribute()true設定されます。

適用対象

DataObjectAttribute(Boolean)

ソース:
DataObjectAttribute.cs
ソース:
DataObjectAttribute.cs
ソース:
DataObjectAttribute.cs

DataObjectAttribute クラスの新しいインスタンスを初期化し、オブジェクトが ObjectDataSource オブジェクトへのバインドに適しているかどうかを示します。

public:
 DataObjectAttribute(bool isDataObject);
public DataObjectAttribute (bool isDataObject);
new System.ComponentModel.DataObjectAttribute : bool -> System.ComponentModel.DataObjectAttribute
Public Sub New (isDataObject As Boolean)

パラメーター

isDataObject
Boolean

オブジェクトが ObjectDataSource オブジェクトへのバインドに適している場合はtrue。それ以外の場合は false

注釈

コンストラクターを DataObjectAttribute(Boolean) 使用して、オブジェクトへのバインドに適したオブジェクトの ObjectDataSourceDesigner 一覧からオブジェクトを除外する必要があるクラスなどのデザイン時クラスに示 ObjectDataSource します。

プロパティは IsDataObject 、 パラメーターの値に isDataObject 設定されます。

適用対象