User617492218 posted
well, you'll never get a match, since you're trying to see
ip.te_date = Calendar1.SelectedDate
what you can try to do is this: - sorry i write C#, dont know VB
DateTime date = DateTime.Parse(Calendar1.SelectedDate);
string newDate = date.ToString("MM/dd/yyyy"); // now you wont have the time in there
var ipAddress = db.tblTrackEvents.Where(ip => ip.te_date.StartsWith(newDate)).ToList();
i'm guessing you're trying to pull back multiple values from the table??? and what are you trying to relate, b/c if you have a Calendar, and they pick the date, the time will be in there. are you just trying to pull back items based on the date? if you are,
the above code should work. if not, please explain in more detail what you are trying to accomplish