Xeku.Notes
0.0.0.7
dotnet add package Xeku.Notes --version 0.0.0.7
NuGet\Install-Package Xeku.Notes -Version 0.0.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Xeku.Notes" Version="0.0.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Xeku.Notes" Version="0.0.0.7" />
<PackageReference Include="Xeku.Notes" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Xeku.Notes --version 0.0.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Xeku.Notes, 0.0.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Xeku.Notes@0.0.0.7
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Xeku.Notes&version=0.0.0.7
#tool nuget:?package=Xeku.Notes&version=0.0.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Xeku.Notes
Core notes module for Xeku, providing hierarchical categories and tag management.
Features
- Business Objects:
Note: Core note entity with Tiptap rich text editor supportNoteCategory: Hierarchical categories implementingITreeNodeNoteTag: Many-to-many tag management
- Data Isolation: Built-in
Ownerfield with auto-filtering - Full-Text Search: Integration with
Xeku.FullTextSearch
Architecture
graph TB
subgraph Data["Data Layer"]
style Data fill:#e8f5e9
Note["Note"]
Category["NoteCategory"]
Tag["NoteTag"]
end
subgraph Logic["Service Layer"]
style Logic fill:#fff4e1
Module["NotesModule"]
Filter["Owner Filter"]
end
subgraph External["External"]
style External fill:#f3e5f5
FTS["Xeku.FullTextSearch"]
Editor["Xeku.Editors"]
end
Module --> Note
Module --> Category
Module --> Tag
Note --> Filter
Note --> FTS
Note --> Editor
Category --> |Parent| Category
Installation
dotnet add package Xeku.Notes
Usage
Module Registration
// Module.cs
public sealed class MyModule : ModuleBase
{
public MyModule()
{
RequiredModuleTypes.Add(typeof(Xeku.Notes.NotesModule));
}
}
AI Agent Integration
Use Cases
| Scenario | Description |
|---|---|
| Note Management | Create, update, delete notes via API |
| Category Organization | Build hierarchical category trees |
| Tag Association | Assign multiple tags to notes |
| Content Search | Full-text search across notes |
API Integration
// Create a note with category and tags
using var os = Application.CreateObjectSpace(typeof(Note));
var note = os.CreateObject<Note>();
note.Subject = "Meeting Notes";
note.Content = "{ \"type\": \"doc\", ... }"; // Tiptap JSON
note.Category = os.FindObject<NoteCategory>(c => c.Name == "Work");
var tag = os.CreateObject<NoteTag>();
tag.Name = "Important";
note.Tags.Add(tag);
os.CommitChanges();
Best Practices
- Owner Assignment: Notes auto-assign
Ownerfrom current user - Category Hierarchy: Use
Parentproperty for nested categories - Content Format: Store Tiptap JSON in
Contentproperty
Related Packages
- Xeku.Notes.Blazor - Blazor TreeGrid editor
- Xeku.Editors.Blazor - Tiptap editor integration
- Xeku.FullTextSearch - Full-text search support
License
MIT License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- DevExpress.ExpressApp (>= 25.2.3)
- DevExpress.ExpressApp.Xpo (>= 25.2.3)
- DevExpress.Persistent.Base (>= 25.2.3)
- DevExpress.Persistent.BaseImpl.Xpo (>= 25.2.3)
- Xeku.Core (>= 0.0.0.7)
- Xeku.Editors (>= 0.0.0.7)
- Xeku.FullTextSearch (>= 0.0.0.7)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Xeku.Notes:
| Package | Downloads |
|---|---|
|
Xeku.Notes.Blazor
Xeku Notes Blazor integration with custom TreeGrid Note Editor. |
|
|
Xeku.Notes.WebApi
Xeku Notes Web API integration. |
GitHub repositories
This package is not used by any popular GitHub repositories.