Skip to content

berkekurnaz/Saklambac

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Saklambac

Easy And Fast Data Storage System For C#

Install Saklambac

Saklambac For .Net Framework:
Install-Package Saklambac -Version 1.0.2

Saklambac For .Net Core:
Install-Package Saklambac.Core -Version 1.0.2

Download Saklambac

You can download and install Saklambac by using the links below.

Saklambac For .Net Framework:
Download For .Net Framework

Saklambac For .Net Core:
Download For .Net Core

How To Use Saklambac ?

A quick example for storing and searching documents:

public class Note
{
    public string Id { get; set; } // Must be variable in the string named Id
    public string Title { get; set; }
    public string Description { get; set; }
    public bool isComplete { get; set; }
}

class Program
{
	static void Main(string[] args)
    {
    
        // We are creating the database instance.
    	SaklambacDb<Note> saklambacDb = new SaklambacDb<Note>();
        
    	Console.WriteLine("List All Notes");
        Console.WriteLine("--------------");
        List<Note> notes = saklambacDb.GetAll();
        foreach (var item in notes)
        {
        	Console.WriteLine(item.Id + "/" + item.Title + "/" + item.Description + "/" + item.isCompleted);
        }
        
        Console.WriteLine("Add New Note");
        Console.WriteLine("------------");
        Note newNote = new Note();
        newNote.Title = "Publish This Package";
        newNote.Description = "You Have To Publish This Package";
        newNote.isComplete = false;
        saklambacDb.Add(newNote);
        
        
        Console.WriteLine("Update This Note");
        Console.WriteLine("----------------");
        Note updateNote = saklambacDb.GetOneById("0g7ceyzd8ce1fu8ieja8dede");
        Note newNote = new Note();
        newNote.Title = "Publish This Package";
        newNote.Description = "You Have To Publish This Package";
        newNote.isComplete = false;
        saklambacDb.Update(updateNote, newNote);
        
        
        Console.WriteLine("Delete This Note");
        Console.WriteLine("----------------");
        Note deleteNote = saklambacDb.GetOneById("0g7ceyzd8ce1fu8ieja8dede");
        saklambacDb.Delete(deleteNote);
        
    }
}

Examples

Number Name Platform Create Date Link
1 School App Windows Form Application 12.3.2019 Go To Example
2 Library App Windows Form Application xx.xx.xxxx Go To Example
3 Contact App Asp.Net Mvc 12.4.2019 Go To Example
4 Movies App Asp.Net Mvc 12.8.2019 Go To Example
5 Blog App .Net Core Mvc 12.9.2019 Go To Example

Documentation

You can reach the document here...

Where To Use ?

  • Desktop Applications
  • Web Applications

Developers

Name Surname Country Github Profile Personel Website
Berke Kurnaz Turkish https://github.com/berkekurnaz http://www.berkekurnaz.com

Contact

contact@berkekurnaz.com

About

Easy And Fast Data Storage System For C#

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages