GithubHelp home page GithubHelp logo

scsi110 / dynamix-entityframework Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ardymalihi/dynamix-entityframework

0.0 2.0 0.0 453 KB

Runtime EntityFramework Model Builder - Creates Entity Framework DbContext and POCO class dynamically

C# 100.00%

dynamix-entityframework's Introduction

Entity Framework Dynamic Model Builder

Easily creates Entity Data Model at runtime.

By creating DbContext and Poco classes at runtime using C# Compiler, this library helps those developers who want to create complex and dynamic type of applications like ERP/CRM or create dynamic Micro Services whith CRUD operation without writing code.

How to Use:

Creating & Loading:

db = new DbAdapter(ConnectionString);

db.Load();

Query:

ie: find a User inside your User Table

var user = (from u in (IEnumerable)db.Instance.User where u.UserName == "User1" select u).FirstOrDefault();

Creating new object:

ie: adding na new user and add to the DbSet

var obj = db.New("User");

obj.UserName = "User2";

obj.Password = "123";

db.Add(obj);

Save:

db.Save();

Property Names Convention:

db.Instance property has the whole Database Context

Table: dbSet -> TableName (ie: db.Instance.User) Table With Schema -> SchemaName_TableName (ie:db.Instance.tmp_User )

Foriegn Key Object access:

Imagine Product and User Table Product ( ID, Name, Code, CreatedBy(FK), UpdatedBy(FK)) Under Product should be two Virtual properties named CreatedByObject and UpdatedByObject Also, there should ba two Collection under User named ProductListFromCreatedBy and ProductListFromUpdatedBy

Note:

IpropertyNotifyChanged has been implemented It supports entity relationship (navigation properties) supports multiple primary keys supports multiple foreign keys

Limitation:

Entity Framework doeas not allow entity property names to begin with underscore or other illegal characters. Required Primary key for all the tables. Columns cannot have the same name as their own tables.

dynamix-entityframework's People

Watchers

James Cloos avatar  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.