I tried to query Customers from a SQLite tabel
I want those wher the Customer Number Starts with certain numbers.
The following code throws an error that sqlite does not have a methode ToString.
Can I reach my aim with Cast ?? How?
return conn.Table().Where(v => v.kdnr.ToString().StartsWith(suchtext));