Replies: 1 comment 3 replies
-
class Song
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Descrption { get; set; }
}
class SongLite
{
public Guid Id { get; set; }
public string Name { get; set; }
}
var result = fsql.Select<Song>().ToList<SongLite>(); |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Could you tell me please if it is possible (or how) to include / exclude specific columns in select statement?
I have a lot of columns in a table and one of them contains large data that I do not want to retrieve all the times.
Thank you!
Zsolt
Beta Was this translation helpful? Give feedback.
All reactions