Raw SQL with Entity Framework
Here is how to execute a raw SQL query.
Since Entity frame uses reflections, you have to create some nested class so that properties can be bound to it.
class alertsType
{
public long alertResponderId { get; set; }
public int alertCount { get...
cwizsoftware.com1 min read