This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Furkan Kambay edited this page Jan 18, 2020
·
4 revisions
Welcome to the Auraxis.Net wiki!
This project is under development.
Currently, collection classes are still being added.
Some other features are on the works.
-
master
is the release branch and I hope I never have to alter its commit history. -
develop
is the default branch of development. Changes will be merged tomaster
gradually (after verifying stability and stuff). - All other branches are temporary feature/bug-fix branches, and since I have severe obsessions about the contents of the commits and even the commit messages, their commit histories are not reliable and will probably change once in a while until the said feature/bug-fix is finished, then the branch will be merged into
develop
. - These branches will also sometimes have "wip" commits that are to be reviewed again, renamed, and probably merged with other adjacent commits in groups of "semantic portions", I guess.
- Basically, branches other than
master
anddevelop
are unreliable and unstable.
using Auraxis.Net;
// Auraxis.[platform].Query<[collection]>()
var query = Auraxis.PC.Query<Character>()
.ThatHas(c => c.DailyRibbon.Date)
.Where(c => c.Name.First).Contains("Red")
.Where(c => c.BattleRank.Value).IsGreaterThanOrEqualTo(10)
.OrderByDescending(c => c.BattleRank.Value)
.Skip(5)
.TakePerDatabase(2);
var result = await query.GetAsync();
Requested URL: link
https://census.daybreakgames.com/s:AuraxisNet/get/ps2:v2/character
?c:has=daily_ribbon.date
&name.first=*red
&c:exactMatchFirst=False
&battle_rank.value=]10
&c:sort=battle_rank.value:-1
&c:start=5
&c:limitPerDB=2