I have a chat application backend built using Web Api where I am exposing several database entities directly to clients. I was wondering whether there is any positive points to map the entities to DTOs or should I continue exposing the entities as I am currently. Just to clarify I am not asking a DTO vs non-DTO general question but just advantages of using it in this scenario since most of the fields in the entities would probably be used by the client.
Yes, you can expose your entities if this is a small application developed by one person and you only have few days to finish it.
If you intend to build an application that may grow up in the future, you should consider using DTO because Domain Entities is not optimal for representation of data. Domain Entities always have more or less, not exactly what you need on the client side.
You can use a tool called AutoMapper to map Domain Entities to DTO.
Some demo: http://www.codeproject.com/Articles/61629/AutoMapper