Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test result outputs #205

Merged
merged 1 commit into from
Oct 17, 2022
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Detail of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:12
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework v6.1](http://msdn.microsoft.com/en-us/data/aa937723) (EF).
Expand Down Expand Up @@ -136,7 +136,8 @@ More will appear as we move forward.*
* Concatenate Person Not Handle Null (line 32)
* Concatenate Person Handle Null (line 49)
* Concatenate Person Handle Name Order (line 68)
* Generic Method Person Handle (line 85)
* Select Generic Method Person Handle (line 85)
* Filter Generic Method Person Handle (line 99)

#### [DateTime](../TestGroup50Types/Test05DateTime.cs):
- Supported
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Detail With Sql of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:12
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework v6.1](http://msdn.microsoft.com/en-us/data/aa937723) (EF).
Expand Down Expand Up @@ -808,7 +808,7 @@ SELECT
FROM [dbo].[EfPersons] AS [Extent1]
```

* Generic Method Person Handle (line 85)
* Select Generic Method Person Handle (line 85)
* T-Sql executed is

```SQL
Expand All @@ -817,6 +817,20 @@ SELECT
FROM [dbo].[EfPersons] AS [Extent1]
```

* Filter Generic Method Person Handle (line 99)
* T-Sql executed is

```SQL
SELECT
[Extent1].[EfPersonId] AS [EfPersonId],
[Extent1].[FirstName] AS [FirstName],
[Extent1].[MiddleName] AS [MiddleName],
[Extent1].[LastName] AS [LastName],
[Extent1].[NameOrder] AS [NameOrder]
FROM [dbo].[EfPersons] AS [Extent1]
WHERE [Extent1].[FirstName] + CASE WHEN (CASE WHEN ([Extent1].[MiddleName] IS NULL) THEN N'' ELSE N' ' END IS NULL) THEN N'' WHEN ([Extent1].[MiddleName] IS NULL) THEN N'' ELSE N' ' END + CASE WHEN ([Extent1].[MiddleName] IS NULL) THEN N'' ELSE [Extent1].[MiddleName] END + N' ' + [Extent1].[LastName] IS NOT NULL
```


#### [DateTime](../TestGroup50Types/Test05DateTime.cs):
- Supported
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:12
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework v6.1](http://msdn.microsoft.com/en-us/data/aa937723) (EF).
Expand Down Expand Up @@ -51,7 +51,7 @@ More will appear as we move forward.*

### Group: Types
- Supported
* [Strings](../TestGroup50Types/Test01Strings.cs) (4 tests)
* [Strings](../TestGroup50Types/Test01Strings.cs) (5 tests)
* [DateTime](../TestGroup50Types/Test05DateTime.cs) (1 tests)

### Group: Additional Features
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Detail of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:12
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -137,7 +137,8 @@ More will appear as we move forward.*
* Concatenate Person Not Handle Null (line 32)
* Concatenate Person Handle Null (line 49)
* Concatenate Person Handle Name Order (line 68)
* Generic Method Person Handle (line 85)
* Select Generic Method Person Handle (line 85)
* Filter Generic Method Person Handle (line 99)

#### [DateTime](../TestGroup50Types/Test05DateTime.cs):
- Supported
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Detail With Sql of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:12
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -491,7 +491,14 @@ More will appear as we move forward.*

```

* Generic Method Person Handle (line 85)
* Select Generic Method Person Handle (line 85)
* T-Sql executed is

```SQL

```

* Filter Generic Method Person Handle (line 99)
* T-Sql executed is

```SQL
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:12
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -51,7 +51,7 @@ More will appear as we move forward.*

### Group: Types
- Supported
* [Strings](../TestGroup50Types/Test01Strings.cs) (4 tests)
* [Strings](../TestGroup50Types/Test01Strings.cs) (5 tests)
* [DateTime](../TestGroup50Types/Test05DateTime.cs) (1 tests)

### Group: Additional Features
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Detail of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:11
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:27

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -135,7 +135,8 @@ More will appear as we move forward.*
* Concatenate Person Not Handle Null (line 32)
* Concatenate Person Handle Null (line 49)
* Concatenate Person Handle Name Order (line 68)
* Generic Method Person Handle (line 85)
* Select Generic Method Person Handle (line 85)
* Filter Generic Method Person Handle (line 99)

#### [DateTime](../TestGroup50Types/Test05DateTime.cs):
- Supported
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Detail With Sql of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:11
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:27

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -477,7 +477,14 @@ More will appear as we move forward.*

```

* Generic Method Person Handle (line 85)
* Select Generic Method Person Handle (line 85)
* T-Sql executed is

```SQL

```

* Filter Generic Method Person Handle (line 99)
* T-Sql executed is

```SQL
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:11
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:27

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -51,7 +51,7 @@ More will appear as we move forward.*

### Group: Types
- Supported
* [Strings](../TestGroup50Types/Test01Strings.cs) (4 tests)
* [Strings](../TestGroup50Types/Test01Strings.cs) (5 tests)
* [DateTime](../TestGroup50Types/Test05DateTime.cs) (1 tests)

### Group: Additional Features
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Detail of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:11
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -135,7 +135,8 @@ More will appear as we move forward.*
* Concatenate Person Not Handle Null (line 32)
* Concatenate Person Handle Null (line 49)
* Concatenate Person Handle Name Order (line 68)
* Generic Method Person Handle (line 85)
* Select Generic Method Person Handle (line 85)
* Filter Generic Method Person Handle (line 99)

#### [DateTime](../TestGroup50Types/Test05DateTime.cs):
- Supported
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Detail With Sql of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:11
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -739,7 +739,7 @@ END
FROM [EfPersons] AS [e]
```

* Generic Method Person Handle (line 85)
* Select Generic Method Person Handle (line 85)
* T-Sql executed is

```SQL
Expand All @@ -750,6 +750,14 @@ END) + COALESCE([e].[MiddleName], N'')) + N' ') + [e].[LastName]
FROM [EfPersons] AS [e]
```

* Filter Generic Method Person Handle (line 99)
* T-Sql executed is

```SQL
SELECT [e].[EfPersonId], [e].[FirstName], [e].[LastName], [e].[MiddleName], [e].[NameOrder]
FROM [EfPersons] AS [e]
```


#### [DateTime](../TestGroup50Types/Test05DateTime.cs):
- Supported
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary of supported commands
============
## Documentation produced for DelegateDecompiler, version 0.30.0 on Thursday, 13 October 2022 16:11
## Documentation produced for DelegateDecompiler, version 0.31.1.0 on Monday, 17 October 2022 17:28

This file documents what linq commands **DelegateDecompiler** supports when
working with [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/) (EF).
Expand Down Expand Up @@ -51,7 +51,7 @@ More will appear as we move forward.*

### Group: Types
- Supported
* [Strings](../TestGroup50Types/Test01Strings.cs) (4 tests)
* [Strings](../TestGroup50Types/Test01Strings.cs) (5 tests)
* [DateTime](../TestGroup50Types/Test05DateTime.cs) (1 tests)

### Group: Additional Features
Expand Down