Hi,
From what I understand, using something like nHibernate will return either a single result like int (say returning a count) but it can't return say 2 columns or 3 columns from the users table.
Is linq the same way?
e.g. say I have the Users table with columns: UserID, username, password, email, datecreated)
Could it return UserID, password ONLY, or it can only return the entire row/entity/class?
thanks for clearing this up.