Code Monkey home page Code Monkey logo

saklambac's Introduction

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

[email protected]

saklambac's People

Contributors

berkekurnaz avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.