This is the new expression syntax that has been added in C # 6.0.
This article has a good summary of the things that have been added, find the heading "Expression Bodied Functions and Properties" about 3/4 down the article.
In C # 6.0, a lot of syntax has been added that generates code under the hood. This does not allow you to do things that you could not do before, but it makes the number of lines of code that you should write less.
In particular, if you have a property like this:
public TYPE Name { get { return EXPRESSION; } }
Then you can write this property as follows:
public TYPE Name => EXPRESSION;
The compiled code will be identical, so you can choose which of the two syntax options you want to use.
You can do the same with the methods:
public string Name(int PARAM1, string PARAM2) { return string.Format("{0}, {1}", PARAM1, PARAM2); }
can be:
public string Name(int PARAM1, string PARAM2) => string.Format("{0}, {1}", PARAM1, PARAM2);
That is all that is needed.
In particular, the property that you saw in the EF7 code is basically the same:
public override ExpressionType NodeType { get { return ExpressionType.Extension; } }