コード例 #1
0
ファイル: OnConflict.cs プロジェクト: windischb/PgSql
        public static OnConflict DoNothing()
        {
            var oc = new OnConflict();

            oc.ConflictAction = "DO NOTHING";
            return(oc);
        }
コード例 #2
0
ファイル: OnConflict.cs プロジェクト: windischb/PgSql
        public static OnConflict DoUpdate()
        {
            var oc = new OnConflict();

            oc.ConflictAction = "DO UPDATE";
            return(oc);
        }