Esempio n. 1
0
 partial void DeleteID(ID instance);
Esempio n. 2
0
 partial void InsertID(ID instance);
Esempio n. 3
0
 partial void UpdateID(ID instance);
Esempio n. 4
0
            void createItem()
            {
                var con = ContextFactory.GetNewContext();

                var item = new ID()
                {
                    Key = Key,
                    MaxID = 0,
                    Cache = 20
                };
                // create new item with the key
                con.IDs.InsertOnSubmit(item);
                con.SubmitChanges();
            }