Skip to content

Commit 8dcbc82

Browse files
authored
Updating links to point to ReadTheDocs
1 parent 3e22550 commit 8dcbc82

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![NuGet version](https://badge.fury.io/nu/AgileObjects.AgileMapper.svg)](https://badge.fury.io/nu/AgileObjects.AgileMapper)
44

5-
AgileMapper is a zero-configuration, [highly-configurable](https://github.com/agileobjects/AgileMapper/wiki/Configuration) object-object mapper with [viewable execution plans](https://github.com/agileobjects/AgileMapper/wiki/Using-Execution-Plans).
6-
It projects queries, transforms, deep clones, updates and merges via extension methods, or a [static or instance](https://github.com/agileobjects/AgileMapper/wiki/Static-vs-Instance-Mappers) API.
5+
AgileMapper is a zero-configuration, [highly-configurable](https://agilemapper.readthedocs.io/configuration) object-object mapper with [viewable execution plans](https://agilemapper.readthedocs.io/Using-Execution-Plans).
6+
It projects queries, transforms, deep clones, updates and merges via extension methods, or a [static or instance](https://agilemapper.readthedocs.io/Static-vs-Instance-Mappers) API.
77
It targets [.NET Standard 1.0+](https://docs.microsoft.com/en-us/dotnet/articles/standard/library) and .NET 3.5+
88

99
You can use it to create new objects:
@@ -12,7 +12,7 @@ You can use it to create new objects:
1212
var customerDto = Mapper.Map(customer).ToANew<CustomerDto>();
1313
```
1414

15-
...[project queries](https://github.com/agileobjects/AgileMapper/wiki/Query-Projection):
15+
...[project queries](https://agilemapper.readthedocs.io/query-projection):
1616

1717
```C#
1818
var customerDtos = await context
@@ -21,18 +21,17 @@ var customerDtos = await context
2121
.ToArrayAsync();
2222
```
2323

24-
...perform [id-aware updates](https://github.com/agileobjects/AgileMapper/wiki/Performing-Updates):
24+
...perform [id-aware updates](https://agilemapper.readthedocs.io/Performing-Updates):
2525

2626
```C#
2727
Mapper.Map(customerViewModel).Over(customer);
2828
```
2929

30-
...and [merges](https://github.com/agileobjects/AgileMapper/wiki/Performing-Merges):
30+
...and [merges](https://agilemapper.readthedocs.io/Performing-Merges):
3131

3232
```C#
3333
Mapper.Map(customerOne).OnTo(customerTwo);
3434
```
3535

3636
It's [available via NuGet](https://www.nuget.org/packages/AgileObjects.AgileMapper) and licensed with the
37-
[MIT licence](https://github.com/agileobjects/AgileMapper/blob/master/LICENCE.md). Check out [the wiki](https://github.com/agileobjects/AgileMapper/wiki)
38-
for more information!
37+
[MIT licence](https://github.com/agileobjects/AgileMapper/blob/master/LICENCE.md). Check out [the documentation](https://agilemapper.readthedocs.io) for more information!

0 commit comments

Comments
 (0)