Browsing All Posts filed under »CSharp«

Sending Emails in a Asp.net WebApi

January 15, 2017

0

Recently I needed to add a function inside a webapi call to send emails. The site was mostly AngularJs and the server side logic was mainly a webapi. We have used Postal.Mvc5 in the past just because it was easy but I couldn’t use it here. So I was forced to find something else. Turns […]

When to use Linq Expression<Func>

July 29, 2016

0

For me this happened when I need to Chaining query operators, for example you have a list of categories to filter your return data. I want to look at homes from New York, California and Florida. What is Expression<Func<T>>? Expression<Func<T>> or Expression is a representation of a strongly typed lambda expression in the form of […]