File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
templates/dotnet/src/Appwrite Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,17 +63,17 @@ namespace Appwrite
63
63
64
64
public static string Between(string attribute, string start, string end)
65
65
{
66
- return $"between(\"{attribute}\", \"{ start}\", \"{ end}\" )";
66
+ return $"between(\"{attribute}\", {ParseValues( start)}, {ParseValues( end)} )";
67
67
}
68
68
69
69
public static string Between(string attribute, int start, int end)
70
70
{
71
- return $"between(\"{attribute}\", {start}, {end})";
71
+ return $"between(\"{attribute}\", {ParseValues( start) }, {ParseValues( end) })";
72
72
}
73
73
74
74
public static string Between(string attribute, double start, double end)
75
75
{
76
- return $"between(\"{attribute}\", {start}, {end})";
76
+ return $"between(\"{attribute}\", {ParseValues( start) }, {ParseValues( end) })";
77
77
}
78
78
79
79
public static string Select(List<string > attributes)
You can’t perform that action at this time.
0 commit comments