Skip to content

Commit

Permalink
Update map.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanMagnan authored Feb 5, 2018
1 parent 0241df4 commit 9ed5c09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/pages/api/mapper/map.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Map with constant value
{% include template-example.html %}
{% highlight csharp %}
DapperPlusManager.Entity<Order>()
.MapValue(2, "ConstantColumn2");
.MapValue(2, "ConstantColumn2");
{% endhighlight %}

Map with variable
Expand All @@ -115,7 +115,7 @@ Map with variable
{% highlight csharp %}
var constantValue = 2;
DapperPlusManager.Entity<Order>()
.MapValue(constantValue, "ConstantColumn2");
.MapValue(constantValue, "ConstantColumn2");
{% endhighlight %}

## Mapper - Output
Expand Down

0 comments on commit 9ed5c09

Please sign in to comment.