コード例 #1
0
ファイル: BaseTable.cs プロジェクト: windischb/PgSql
 public TableListener Notifications(NotificationSharedBy sharedBy = NotificationSharedBy.Schema) => _onNotification ?? (_onNotification = DMLTriggerManager.GetTiggerListener(this, sharedBy));
コード例 #2
0
ファイル: TypedTable.cs プロジェクト: windischb/PgSql
 public new TypedTableListener <T> Notifications(NotificationSharedBy sharedBy = NotificationSharedBy.Schema) => _onNotification ?? (_onNotification = DMLTriggerManager.GetTypedTiggerListener <T>(this, sharedBy));