ObjectStateManager.GetObjectStateEntry メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
特定のオブジェクトまたはリレーションシップ エントリの ObjectStateEntry を返します。
オーバーロード
| 名前 | 説明 |
|---|---|
| GetObjectStateEntry(EntityKey) |
指定したキーを持つオブジェクトまたはリレーションシップ エントリの ObjectStateEntry を返します。 |
| GetObjectStateEntry(Object) |
指定したオブジェクトの ObjectStateEntry を返します。 |
GetObjectStateEntry(EntityKey)
指定したキーを持つオブジェクトまたはリレーションシップ エントリの ObjectStateEntry を返します。
public:
System::Data::Objects::ObjectStateEntry ^ GetObjectStateEntry(System::Data::EntityKey ^ key);
public System.Data.Objects.ObjectStateEntry GetObjectStateEntry(System.Data.EntityKey key);
member this.GetObjectStateEntry : System.Data.EntityKey -> System.Data.Objects.ObjectStateEntry
Public Function GetObjectStateEntry (key As EntityKey) As ObjectStateEntry
パラメーター
返品
指定されたEntityKeyの対応するObjectStateEntry。
例外
keyがnullされたとき。
指定した key が状態マネージャーで見つからない場合。
指定した EntityKey を持つエンティティが ObjectStateManagerに存在しません。
例
この例では、指定したEntityKeyのObjectStateEntryをObjectStateManagerから取得します。 次に、 SalesOrderHeader.PurchaseOrderNumber プロパティの現在の値を取得し、プロパティの値を変更し、変更されたプロパティのコレクションを列挙します。
// Specify the order to update.
int orderId = 43680;
using (AdventureWorksEntities context =
new AdventureWorksEntities())
{
try
{
var order = (from o in context.SalesOrderHeaders
where o.SalesOrderID == orderId
select o).First();
// Change the status of an existing order.
order.Status = 1;
// Delete the first item in the order.
context.DeleteObject(order.SalesOrderDetails.First());
// Create a new SalesOrderDetail object.
// You can use the static CreateObjectName method (the Entity Framework
// adds this method to the generated entity types) instead of the new operator:
// SalesOrderDetail.CreateSalesOrderDetail(1, 0, 2, 750, 1, (decimal)2171.2942, 0, 0,
// Guid.NewGuid(), DateTime.Today));
SalesOrderDetail detail = new SalesOrderDetail
{
SalesOrderID = 0,
SalesOrderDetailID = 0,
OrderQty = 2,
ProductID = 750,
SpecialOfferID = 1,
UnitPrice = (decimal)2171.2942,
UnitPriceDiscount = 0,
LineTotal = 0,
rowguid = Guid.NewGuid(),
ModifiedDate = DateTime.Now
};
order.SalesOrderDetails.Add(detail);
// Get the ObjectStateEntry for the order.
ObjectStateEntry stateEntry =
context.ObjectStateManager
.GetObjectStateEntry(order);
Console.WriteLine("State before SaveChanges() is called: {0}",
stateEntry.State.ToString());
// Save changes in the object context to the database.
int changes = context.SaveChanges();
Console.WriteLine("State after SaveChanges() is called: {0}",
stateEntry.State.ToString());
Console.WriteLine(changes.ToString() + " changes saved!");
Console.WriteLine("Updated item for order ID: "
+ order.SalesOrderID.ToString());
// Iterate through the collection of SalesOrderDetail items.
foreach (SalesOrderDetail item in order.SalesOrderDetails)
{
Console.WriteLine("Item ID: "
+ item.SalesOrderDetailID.ToString() + " Product: "
+ item.ProductID.ToString() + " Quantity: "
+ item.OrderQty.ToString());
}
}
catch (UpdateException ex)
{
Console.WriteLine(ex.ToString());
}
}
注釈
GetObjectStateEntry(EntityKey) メソッドによって発生したInvalidOperationExceptionを処理しなくても、ObjectStateEntry オブジェクトを返すには、TryGetObjectStateEntry(EntityKey, ObjectStateEntry) メソッドを使用します。
適用対象
GetObjectStateEntry(Object)
指定したオブジェクトの ObjectStateEntry を返します。
public:
System::Data::Objects::ObjectStateEntry ^ GetObjectStateEntry(System::Object ^ entity);
public System.Data.Objects.ObjectStateEntry GetObjectStateEntry(object entity);
member this.GetObjectStateEntry : obj -> System.Data.Objects.ObjectStateEntry
Public Function GetObjectStateEntry (entity As Object) As ObjectStateEntry
パラメーター
- entity
- Object
取得したObjectStateEntryが属するObject。
返品
指定されたObjectの対応するObjectStateEntry。
例外
指定した Object のエンティティが ObjectStateManagerに存在しません。
注釈
GetObjectStateEntry(Object) メソッドによって発生したInvalidOperationExceptionを処理しなくても、ObjectStateEntry オブジェクトを返すには、TryGetObjectStateEntry(Object, ObjectStateEntry) メソッドを使用します。