-
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add config setting for PrioritizePropertyOrFieldOverTheType (#664)
* ... * Add config setting for PrioritizePropertyOrFieldOverTheType
- Loading branch information
Showing
10 changed files
with
542 additions
and
438 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace System.Linq.Dynamic.Core.Tests.Entities | ||
namespace System.Linq.Dynamic.Core.Tests.Entities; | ||
|
||
public class Company : Entity | ||
{ | ||
public class Company : Entity | ||
{ | ||
public string Name { get; set; } | ||
public string Name { get; set; } | ||
|
||
public long? MainCompanyId { get; set; } | ||
|
||
public long? MainCompanyId { get; set; } | ||
public MainCompany MainCompany { get; set; } | ||
|
||
public MainCompany MainCompany { get; set; } | ||
public ICollection<Employee> Employees { get; set; } | ||
|
||
public ICollection<Employee> Employees { get; set; } | ||
} | ||
public DateTime DateTime { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.