Ejemplo n.º 1
0
        public static ORMClass Find(long id) //Returns object with given id if exists. If not, returns new object
        {
            ORMClass o = new ORMClass(new SQLiteCommand("SELECT * FROM putevoi WHERE id=@id", conn));

            return(o);
        }