BACnet.Client.Db.QueryObjectsCommand.QueryObjectsCommand C# (CSharp) Метод

QueryObjectsCommand() публичный Метод

Constructs a new query objects command instance
public QueryObjectsCommand ( SQLiteConnection connection ) : System
connection System.Data.SQLite.SQLiteConnection
Результат System
        public QueryObjectsCommand(SQLiteConnection connection)
        {
            _command = new SQLiteCommand(Queries.QueryObjects, connection);
            _deviceInstance = new SQLiteParameter("@deviceInstance");
            _objectType = new SQLiteParameter("@objectType");

            _command.Parameters.Add(_deviceInstance);
            _command.Parameters.Add(_objectType);
        }