robertohuertasm / SQLite4Unity3d

SQLite made easy for Unity3d
MIT License
1.28k stars 265 forks source link

Select Query #51

Closed pradeepgamasome closed 7 years ago

pradeepgamasome commented 7 years ago

Hello Every One. I am new to unity and sqlite. How to perform select query with where constraint. Please reply as soon as possible.

sandolkakos commented 7 years ago

Here is an example about how to select a person object by its name: Person person = personList.Where(x => x.Name = "Name").FirstOrDefault(); // you need to import the using System.Linq to use the Where clause.