コード例 #1
0
ファイル: Northwind.cs プロジェクト: Jeff-Lewis/nhaml
 private void attach_Orders( Order entity )
 {
     SendPropertyChanging();
     entity.Employee = this;
 }
コード例 #2
0
ファイル: Northwind.cs プロジェクト: Jeff-Lewis/nhaml
 private void detach_Orders( Order entity )
 {
     SendPropertyChanging();
     entity.Employee = null;
 }
コード例 #3
0
ファイル: Northwind.cs プロジェクト: Jeff-Lewis/nhaml
 private void detach_Orders( Order entity )
 {
     SendPropertyChanging();
     entity.Customer = null;
 }
コード例 #4
0
ファイル: Northwind.cs プロジェクト: Jeff-Lewis/nhaml
 private void attach_Orders( Order entity )
 {
     SendPropertyChanging();
     entity.Customer = this;
 }
コード例 #5
0
ファイル: Northwind.cs プロジェクト: Jeff-Lewis/nhaml
 partial void DeleteOrder( Order instance );
コード例 #6
0
ファイル: Northwind.cs プロジェクト: Jeff-Lewis/nhaml
 partial void UpdateOrder( Order instance );
コード例 #7
0
ファイル: Northwind.cs プロジェクト: Jeff-Lewis/nhaml
 partial void InsertOrder( Order instance );