Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ The methods below map the DTO query expresions to the equivalent data query expr
## Known Issues
Mapping a single type in the source expression to multiple types in the destination expression is not supported e.g.
```c#
```
[Fact]
public void Can_map_if_source_type_targets_multiple_destination_types_in_the_same_expression()
{
Expand Down Expand Up @@ -192,4 +191,6 @@ Mapping a single type in the source expression to multiple types in the destinat
private class TargetListItemType
{
public virtual int Id { get; set; }
}
}

```