Aerospike.Database.LINQPadDriver
2.0.5.17
See the version list below for details.
dotnet add package Aerospike.Database.LINQPadDriver --version 2.0.5.17
NuGet\Install-Package Aerospike.Database.LINQPadDriver -Version 2.0.5.17
<PackageReference Include="Aerospike.Database.LINQPadDriver" Version="2.0.5.17" />
paket add Aerospike.Database.LINQPadDriver --version 2.0.5.17
#r "nuget: Aerospike.Database.LINQPadDriver, 2.0.5.17"
// Install Aerospike.Database.LINQPadDriver as a Cake Addin #addin nuget:?package=Aerospike.Database.LINQPadDriver&version=2.0.5.17 // Install Aerospike.Database.LINQPadDriver as a Cake Tool #tool nuget:?package=Aerospike.Database.LINQPadDriver&version=2.0.5.17
Aerospike Database for LINQPad 7
Aerospike Namespace, Set, Records, Bins, and Secondary Indexes
Installation of LINQPad Driver
Installation of the Aerospike Database
Description
Aerospike for LINQPad 7 is a data context dynamic driver for interactively querying and updating an Aerospike database using "LINQPad". LINQPad is a Graphical Development Tool designed for rapid prototyping, interactive testing, data modeling, data mining, drag-and-drop execution, interactive debugging, etc. The Aerospike driver for LINQPad is designed to support all LINQPad capabilities including the enhanced ability to learn and use the Aerospike API directly.
Here is a subset of what you can perform using the driver:
- Query any Aerospike Set or Secondary Index using any LINQ command (including joins), interactively.
- Use the driver’s extension methods to perform operations like Aerospike Expression, CRUD operations, etc. without understanding the underlying Aerospike API.
- Serialize and deserialize any C# object via the Object-Mapper (POCO). The driver supports all C# data types, nested classes, and collections.
- Full JSON support using Json.NET.
- Be able to execute UDFs directly and display their underlying code. UDFs are treated like C# methods with intellisense and code completion.
- Export or Import Sets directly or by means of an Aerospike Filter.
- Provides metadata about the cluster which includes active/inactive nodes, Aerospike server version, etc.
- Use the Aerospike API directly to perform advance operations or instantly test snippets used in your application code.
The driver can, also, dynamically detect the structure of records within an Aerospike Set resulting in an easy-to-understand view much like a relational table with enhanced capabilities. Some of these capabilities are:
- detection of bins with the same name but have different data types between records within a Set
- records with different Bin structures within a Set
- implicit data type conversion without the need to cast or check a Bin's data type for quick data operation
- enhanced Aerospike CDT handling
- driver extension methods to programmatically interrogate Namespaces, Sets, records, Bins, Bin data types, etc.
The screenshot below show how Aerospike Sets and Bins are represented in LinqPad:
The LINQPad connection pane will display the different Aerospike components in an hierarchical manner where namespace is under Aerospike cluster connection. Aerospike Sets are under namespaces and bins are under Sets. Below screenshot shows the relationship between these components:
Each component can be dragged-and-dropped onto the LINQPad Query pane to be executed by LINQPad. The execution behavior will depend on the component. For example, a Set or Secondary Index will present the records within that component. For other components, the properties are displayed. In all cases, you can always execute the driver’s extension methods. These extension methods, greatly simplify Aerospike API commands like Get, Put, Query, Operate, etc. plus, the ability to perform things like importing or exporting data. Of course, you can always use LINQ against Aerospike Sets or Secondary Indexes. Below is an example of some of the driver extensions:
Aerospike Namespace, Set, Records, Bins, and Secondary Indexes
The LINQPad connection pane will display the different Aerospike components in a hierarchical manner where namespace is under Aerospike cluster connection. Aerospike Sets are under namespaces and bins are under Sets. Below screenshot shows the relationship between these components:
Each component can be dragged-and-dropped onto the LINQPad Query pane to be executed by LINQPad. The execution behavior will depend on the component. For example, a Set or Secondary Index will present the records within that component. For other components, the properties are displayed. In all cases, you can always execute the driver’s extension methods and properties. These extensions, greatly simplify Aerospike API commands like Get, Put, Query, Operate, etc. plus, the ability to perform things like importing or exporting data. Below is an example of some of the driver extensions:
Aerospike Sets and records are very easy to use. The detected bins in a record are integrated into LINQPad and are treated as C# properties. As such, features like Intellisense and Autocompletion just work. You can also access bins within a record by using the bin name.
Since Aerospike is a schemaless database, a record can consist of varying number of bins, or a bin can have different data types between records. The driver can handle these conditions seamlessly. This is done using extension methods and implicit data conversion.
Implicit data conversion eliminates the need to test and cast a bin’s value so that it can be used directly in any operation. Below is an example that shows how implicit conversion works. The set, “graphDeviceNodeIdSet”, has a bin named “nodeID” that consists of two different data type values. Some records have a list value while others have a string value. This example uses the “where” clause which compares each record in the set looking for a numeric value of 367 or the value “a” in the list values.
User-Defined Functions (UDFs)
The driver supports the execution of UDFs by calling the Execute extension method. The Execute method will reflect the actual arguments used in the UDF. Below is an example:
Aerospike API
At any time, you can use the underlying Aerospike API directly or a combination of API or driver extension methods. Below is an example:
void Main()
{
//Using Aerospike API
var cPolicy = new ClientPolicy();
using var client = new AerospikeClient(cPolicy, "localhost", 3000);
//Insert 3 records, with MapPolicy KEY_ORDERED
var key1 = new Key("test", "s1", 1);
var key2 = new Key("test", "s1", 2);
var key3 = new Key("test", "s1", 3);
var policy = new WritePolicy();
policy.recordExistsAction = RecordExistsAction.UPDATE;
client.Put(policy, key1, new Bin("id", "groupID1"));
client.Put(policy, key2, new Bin("id", "groupID2"));
client.Put(policy, key3, new Bin("id", "groupID3"));
for (int i = 0; i < 25; i++)
{
client.Operate(null, key1,
ListOperation.Insert("myList", 0, Value.get(value)),
ListOperation.Trim("myList", 0, 20) );
}
}
Serialization/Object-Mapper
The driver supports serialize and deserialize any C# object to/from an Aerospike record. Native C# types are stored as Aerospike data type. Unsupported types like DateTime, DateTimeOffset, Timespan, etc. are serialized as an ISO string or a numeric value based on behavior defined in the connection dialog. This behavior can also be changed programmability by the driver’s API or by providing a custom serializer.
C# collections will be serialized into an Aerospike CDT. C# public properties or fields will be serialized into an Aerospike bin where the bin name is the same name as the property/field. Fields can be ignored, and bin names can be different based on the use of C# attributes (Aerospike.Client.BinIgnore, Aerospike.Client.BinName). Any nested class will be serialized as an Aerospike JSON document.
The driver can deserialize an Aerospike record into a C# class. Just like serialization, bins are mapped to properties and fields using attributes as defined above. The driver will determine the best possible constructor to instantiate the class. This behavior can be changed by using the “Aerospike.Client.Constructor” attribute. Below is an example:
public enum Tiers
{
None = 0,
Low = 4,
Medium = 3,
High = 2,
VeryHigh = 1
}
public class Player
{
//Attributes used to indicate which constructor to use.
//If not provided, the driver will choose the best constructor based on signure.
//A class constructor is NOT required.
[Aerospike.Client.Constructor]
public Player(int playerId,
string userName,
string firstName,
string lastname,
List<WagerResultTransaction> wagersResults)
{
this.PlayerId = playerId;
this.UserName = userName;
this.FirstName = firstName;
this.LastName = lastname;
this.WagersResults = wagersResults;
}
//Attribute to indicate that this property shoule be ignored in the Mapping
[Aerospike.Client.BinIgnore]
public string Tag { get; } = "Player";
public int PlayerId { get; } //Note Read-Only, being set in the constructor
public string UserName { get; }
public string FirstName { get; }
public string LastName { get; }
//Attribute to indicate that the Bin Name is Different from the Property Name.
[Aerospike.Client.BinName("EmailAddress")]
public string Email { get; set; }
public Game Game { get; set; } //nested class
public List<WagerResultTransaction> WagersResults { get; } //A list of objects
}
public sealed class Game
{
public Game()
{ }
public string Tag;
public string Name;
public decimal MinimumWager;
public decimal MaximumWager;
}
public sealed class WagerResultTransaction
{
public enum Types
{
Wager,
Win,
Loss
}
public WagerResultTransaction(long id, DateTimeOffset timestamp)
{
this.Id = id;
this.Timestamp = timestamp;
}
public long Id { get;}
public DateTimeOffset Timestamp { get; }
public string Game { get; private set; }
public string BetType { get; private set; }
public Types Type { get; set; }
public decimal Amount { get; set; }
public decimal PlayerBalance { get; set; }
}
// Read 5 records from the Player Aerospike set.
// Instantiate 5 new instances of Player based on the records.
// Change the Primary Key Value and Player's ID and thoses changed instances back to the Player set.
// Read back the newly inserted records and display.
// Removed the newly inserted records from the Player set.
void Main()
{
var players = test.players.Take(5).Dump("DB Records", 0) //Read 5 records from the DB
.Select(i => i.Cast<Player>()); //Create 5 new instances of the Player class from the DB
players.Dump("Player Instances", 0);
//Change The Player Id and Write Back to the DB
var newPlayerIds = new List<int>();
foreach (var player in players)
{
var newPlayerId = player.PlayerId * 100;
newPlayerIds.Add(newPlayerId);
// We can write the object as a collection of bins or as a Document to a single bin in the DB.
//Defaults to writing a bin for each Property in the class.
//Nested classes will be treated as documents.
test.players.WriteObject(newPlayerId, player); //Like Put we can set a TTL
}
//Let’s Get the newly added players from the DB
newPlayerIds
.Select(pi => test.players.Get(pi))
.ToList() //Need to Get Linq to Execute the Get
.Dump("New Players from the DB as Records", 0);
//Remove the New PlayerIds from the DB (Cleanup)
newPlayerIds.All(pi => test.players.Delete(pi)).Dump("Cleanup Successfull:");
}
Below is the output from LINQPad:
DB Records | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
IEnumerable<IEqualityComparer<ARecord>> (5 items) | ||||||||||||||
PK | PlayerId | UserName | FirstName | LastName | EmailAddress | Game | WagersResults | |||||||
5220 | 522 | Roberts.Eunice | Eunice | Roberts | RobertsEunice52@prohaska.name | JsonDocument (4 items) | List<JsonDocument> (2 items) | |||||||
Name | Value | JsonDocument (7 items) | ||||||||||||
Tag | Game | Name | Value | |||||||||||
Name | Roulette | Id | 1 | |||||||||||
MinimumWager | 0.1 | Timestamp | 2022-12-20T09:18:33.3706-04:00 | |||||||||||
MaximumWager | 50 | Game | Roulette | |||||||||||
BetType | Dozen | |||||||||||||
Type | Loss | |||||||||||||
Amount | 9.15 | |||||||||||||
PlayerBalance | 821.57 | |||||||||||||
JsonDocument (7 items) | ||||||||||||||
Name | Value | |||||||||||||
Id | 2 | |||||||||||||
Timestamp | 2022-12-20T09:18:25.3706-04:00 | |||||||||||||
Game | Roulette | |||||||||||||
BetType | ||||||||||||||
Type | Wager | |||||||||||||
Amount | 9.15 | |||||||||||||
PlayerBalance | 830.72 | |||||||||||||
5850 | 585 | Daugherty.Tad | Tad | Daugherty | DaughertyTad64@morissetteryan.biz | JsonDocument (4 items) | List<JsonDocument> (10 items) | |||||||
5320 | 532 | Nicolas.Cleveland | Cleveland | Nicolas | NicolasCleveland46@batz.uk | JsonDocument (4 items) | List<JsonDocument> (10 items) | |||||||
5210 | 521 | Cormier.Taya | Taya | Cormier | CormierTaya92@rodriguez.com | JsonDocument (4 items) | List<JsonDocument> (10 items) | |||||||
5690 | 569 | Kuphal.Giovani | Giovani | Kuphal | KuphalGiovani7@koepp.name | JsonDocument (4 items) | List<JsonDocument> (10 items) | |||||||
27290 | ||||||||||||||
Player Instances | ||||||||||||||
IEnumerable<Player> (5 items) | ||||||||||||||
Tag | PlayerId | UserName | FirstName | LastName | Game | WagersResults | ||||||||
Player | 522 | Roberts.Eunice | Eunice | Roberts | RobertsEunice52@prohaska.name | Game | List<WagerResultTransaction> (2 items) | |||||||
UserQuery+Game | Id | Timestamp | Game | BetType | Type | Amount | PlayerBalance | |||||||
Tag | Game | 1 | 12/20/2022 9:18:33 AM -04:00 | Roulette | Dozen | Loss | 9.15 | 821.57 | ||||||
Name | Roulette | 2 | 12/20/2022 9:18:25 AM -04:00 | Roulette | null | Wager | 9.15 | 830.72 | ||||||
MinimumWager | 0.1 | 18.3 | 1652.29 | |||||||||||
MaximumWager | 50 | |||||||||||||
Player | 585 | Daugherty.Tad | Tad | Daugherty | DaughertyTad64@morissetteryan.biz | Game | List<WagerResultTransaction> (10 items) | |||||||
Player | 532 | Nicolas.Cleveland | Cleveland | Nicolas | NicolasCleveland46@batz.uk | Game | List<WagerResultTransaction> (10 items) | |||||||
Player | 521 | Cormier.Taya | Taya | Cormier | CormierTaya92@rodriguez.com | Game | List<WagerResultTransaction> (10 items) | |||||||
Player | 569 | Kuphal.Giovani | Giovani | Kuphal | KuphalGiovani7@koepp.name | Game | List<WagerResultTransaction> (10 items) | |||||||
New Players from the DB as Records | ||||||||||||||
List<IEqualityComparer<ARecord>> (5 items) | ||||||||||||||
PK | PlayerId | UserName | FirstName | LastName | EmailAddress | Game | WagersResults | |||||||
52200 | 522 | Roberts.Eunice | Eunice | Roberts | RobertsEunice52@prohaska.name | JsonDocument (4 items) | List<JsonDocument> (2 items) | |||||||
Name | Value | JsonDocument (7 items) | ||||||||||||
Tag | Game | Name | Value | |||||||||||
Name | Roulette | Id | 1 | |||||||||||
MinimumWager | 0.1 | Timestamp | 2022-12-20T09:18:33.3706-04:00 | |||||||||||
MaximumWager | 50 | Game | Roulette | |||||||||||
BetType | Dozen | |||||||||||||
Type | Loss | |||||||||||||
Amount | 9.15 | |||||||||||||
PlayerBalance | 821.57 | |||||||||||||
JsonDocument (7 items) | ||||||||||||||
Name | Value | |||||||||||||
Id | 2 | |||||||||||||
Timestamp | 2022-12-20T09:18:25.3706-04:00 | |||||||||||||
Game | Roulette | |||||||||||||
BetType | ||||||||||||||
Type | Wager | |||||||||||||
Amount | 9.15 | |||||||||||||
PlayerBalance | 830.72 | |||||||||||||
58500 | 585 | Daugherty.Tad | Tad | Daugherty | DaughertyTad64@morissetteryan.biz | JsonDocument (4 items) | List<JsonDocument> (10 items) | |||||||
53200 | 532 | Nicolas.Cleveland | Cleveland | Nicolas | NicolasCleveland46@batz.uk | JsonDocument (4 items) | List<JsonDocument> (10 items) | |||||||
52100 | 521 | Cormier.Taya | Taya | Cormier | CormierTaya92@rodriguez.com | JsonDocument (4 items) | List<JsonDocument> (10 items) | |||||||
56900 | 569 | Kuphal.Giovani | Giovani | Kuphal | KuphalGiovani7@koepp.name | JsonDocument (4 items) | List<JsonDocument> (10 items) | |||||||
272900 | ||||||||||||||
Cleanup Successful: | ||||||||||||||
TRUE |
Json Support
You can read and write Json to or from an Aerospike namespace, set, or record by means of the “ToJson” and “FromJson“ methods. The driver supports embedded JSON data types which are compatible with Json generated from multiple databases.
Document API
The driver supports the use of the Aerospike Document API. This feature can be turned on or off from within the connection dialog. Below is an example where we show three different methods of obtaining a value within a JSON document. They are:
- Using the Aerospike Operate API
- Using JSON Pathing
- Using an Aerospike secondary index with the driver’s Query extension method with Aerospike filter expressions
Note that the secondary index is defined on “neighbors” bin in the below example:
test.graphG1Set.Get("201").Dump("Obtain the complete record from the DB");
test.graphG1Set.Operate("201", //PK
MapOperation.GetByKey("neighbors", //Aerospike API
Value.Get("attr01"),
MapReturnType.VALUE,
CTX.MapKey(Value.Get("201.02")))).Dump("Using Operation");
test.graphG1Set.Get("201") //PK
.neighbors
.JsonPath("$.['201.02']['attr01']").Dump("Using JSON Path (JToken)");
test.graphG1Set.graphG1Set_idx.Query(Filter.Contains("neighbors", //Aerospike API
IndexCollectionType.MAPKEYS,
"201.02"))
.AsEnumerable()
.Select(gs => gs.neighbors["201.02"]["attr01"]).Dump("Linq using secondary index");
Below is the output from LINQPad:
Obtain the complete record from the DB | |||
---|---|---|---|
IEqualityComparer<ARecord> | |||
PK | 201 | ||
nodeID | 201 | ||
neighbors | JsonDocument (15 items) | ||
Name | Value | ||
201.01 | JObject (2 items) | ||
201.02 | JObject (9 items) | ||
Name | Value | ||
attr01 | RLTZ | ||
attr02 | RJDO | ||
attr03 | SPHJ | ||
attr04 | GUBU | ||
attr05 | TZFZ | ||
attr06 | RCHM | ||
attr07 | MGED | ||
attr08 | ZTTO | ||
attr09 | KUID | ||
201.03 | JObject (16 items) | ||
201.04 | JObject (19 items) | ||
201.05 | JObject (18 items) | ||
201.06 | JObject (5 items) | ||
201.07 | JObject (16 items) | ||
201.08 | JObject (2 items) | ||
201.09 | JObject (4 items) | ||
201.1 | JObject (17 items) | ||
201.11 | JObject (4 items) | ||
201.12 | JObject (11 items) | ||
201.13 | JObject (8 items) | ||
201.14 | JObject (19 items) | ||
201.15 | JObject (11 items) | ||
Using Operation | |||
ARecord | |||
Namespace | test | ||
SetName | graphG1Set | ||
Values | ExpandoObject | ||
PK | 201 | ||
neighbors | RLTZ | ||
Using JSON Path (JToken) | |||
RLTZ | |||
Linq using secondary index | |||
IEnumerable<JToken> (1 item) | |||
RLTZ |
Importing/Exporting
The driver can import a valid JSON file into an Aerospike set. The set can be an existing set or a new set which will be created. Each JSON property will be mapped to an Aerospike bin. Any JSON collection types will be transformed into the corresponding Aerospike CDT. Nested JSON objects will be treated as Aerospike JSON documents.
The driver can also export an Aerospike set into a JSON file. Below is an example of an export from the “players” Aerospike set.
test.players.Export(@"c:\users\randersen_aerospike\Desktop\player.json");
Below is an example of importing a JSON file:
test.players.Import(@"c:\users\randersen_aerospike\Desktop\player.json");
test.Import(@"c:\users\randersen_aerospike\Desktop\player.json", "players");
Examples
Sample scripts can be found in the LINQPad Sample tree view tab under “nuget” or in the “linqpad-samples” folder in GitHub.
The sample scripts are:
- ReadMeFirst.linq – This script should be reviewed first. It will load the data into the “Demo” namespace which needs to exist. To create this namespace, please follow these instructions.
- Basic Data Types.linq - Review some of the capabilities of working with Bins from within the driver plus show how to programmatically access sets and bins
- Record Display View.linq - This demonstrates how "Record Display View" works
- Linq Join Customer and Invoice.linq – Shows how to perform a client side join of two sets
- LinqWhere-AerospikePK.linq – Shows how to use primary keys with Linq and Aerospike API
- LinqWhere-AerospikeExpressions.linq – Shows how to use a Linq Where clause and the use of Aerospike Filter Expressions
- POCO.linq – Show the use of the ORM between complete class structures and the Aerospike DB
- CDT-Json-Docs.linq – Show the use of CDTs (Collection Data Types), Json, and documents by means of Linq and Aerospike Expressions
Prerequisites
Installation of LINQPad Driver
LINQPad NuGet Manager
- Open LINQPad
- Click
Add Connection
Link. - Click button
View more drivers…
- Click radio button
Show all drivers
and typeAerospike
. - Click Install
Manual
Obtain the latest driver from the Driver
folder and download to your computer.
- Open LINQPad
- Click
Add Connection
Link. - Click button
View more drivers…
- Click button
Install driver from .LPX6 file…
and select downloaded lpx6 file.
Installation of the Aerospike Database
There are multiple ways to install Aerospike DB.
Other Resources
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net6.0-windows7.0 is compatible. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net7.0-windows7.0 is compatible. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Aerospike.Client (>= 5.3.1)
- LINQPad.Reference (>= 1.3.0)
- Newtonsoft.Json (>= 13.0.3)
-
net6.0-windows7.0
- Aerospike.Client (>= 5.3.1)
- LINQPad.Reference (>= 1.3.0)
- Newtonsoft.Json (>= 13.0.3)
-
net7.0-windows7.0
- Aerospike.Client (>= 5.3.1)
- LINQPad.Reference (>= 1.3.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
3.4.5 | 61 | 10/31/2024 | |
3.4.3 | 75 | 10/22/2024 | |
3.4.2 | 60 | 10/17/2024 | |
3.4.0 | 114 | 7/27/2024 | |
3.3.1 | 193 | 4/15/2024 | |
3.2.0 | 172 | 3/4/2024 | |
3.1.0 | 195 | 1/17/2024 | |
3.0.2 | 190 | 1/3/2024 | |
3.0.1 | 186 | 1/2/2024 | |
3.0.0 | 202 | 12/21/2023 | |
2.3.3.1 | 199 | 12/5/2023 | |
2.3.3 | 226 | 11/2/2023 | |
2.3.2 | 218 | 10/12/2023 | |
2.3.1 | 190 | 9/25/2023 | |
2.3.0 | 188 | 9/23/2023 | |
2.1.2 | 283 | 8/22/2023 | |
2.1.1 | 236 | 8/9/2023 | |
2.1.0 | 257 | 7/14/2023 | |
2.0.6 | 252 | 6/19/2023 | |
2.0.5.17 | 257 | 6/7/2023 | |
2.0.5.16 | 247 | 6/1/2023 | |
2.0.5.15 | 246 | 5/30/2023 | |
2.0.5.14 | 218 | 5/26/2023 | |
2.0.5.12 | 247 | 5/17/2023 | |
2.0.5.11 | 251 | 5/17/2023 | |
2.0.5.10 | 210 | 5/16/2023 | |
2.0.5.8 | 219 | 5/12/2023 | |
2.0.5.7 | 223 | 5/11/2023 | |
2.0.5.6 | 230 | 5/10/2023 | |
2.0.5.4 | 188 | 5/6/2023 | |
2.0.5.3 | 198 | 4/27/2023 | |
2.0.5.2 | 262 | 3/28/2023 | |
2.0.5.1 | 313 | 3/23/2023 | |
2.0.5 | 332 | 3/22/2023 |