-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing issues with how selects work with Complex types (#363)
* Fixing issues with how selects work with Complex types * revving version
- Loading branch information
1 parent
dac4774
commit 0e3c4b4
Showing
19 changed files
with
327 additions
and
55 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
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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
namespace Redis.OM.Searching.Query | ||
{ | ||
/// <summary> | ||
/// Represents a return field with a name and an optional alias. | ||
/// </summary> | ||
public struct ReturnField | ||
{ | ||
/// <summary> | ||
/// The name of the return field. | ||
/// </summary> | ||
public string Name; | ||
|
||
/// <summary> | ||
/// An optional alias for the return field. | ||
/// </summary> | ||
public string? Alias; | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="ReturnField"/> struct with the specified name and alias. | ||
/// </summary> | ||
/// <param name="name">The name of the return field.</param> | ||
/// <param name="alias">An optional alias for the return field.</param> | ||
public ReturnField(string name, string alias) | ||
{ | ||
Name = name; | ||
Alias = alias; | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="ReturnField"/> struct with the specified name. | ||
/// </summary> | ||
/// <param name="name">The name of the return field.</param> | ||
public ReturnField(string name) | ||
{ | ||
Name = name; | ||
Alias = null; | ||
} | ||
} | ||
} |
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.