I have a property for my inventorynumbers and I want to auto increment it (LiteDB, asp.net Core 3.1 razor pages) the property is a string! Is that possible???
Asked
Active
Viewed 143 times
0
-
How do you want increment String _id? By int number? There is no AutoId support for String because there is no rule for that â mbdavid Feb 12 '20 at 19:49
-
Solved! I split my string âxyz - 113â and parse it to int... and then just lncrement the int â serdar Feb 12 '20 at 21:00