Quantcast
Channel: LLSCore Wiki Rss Feed
Viewing all articles
Browse latest Browse all 2

Updated Wiki: Home

$
0
0

LLS.Core - A simple ORM Framework

News

  • Mar 10th: Stable version 1.0 is out on CodePlex.
  • Mar 05th: The first stable version (0.9) of LLS.Core is out on CodePlex.

Project description

A simple ORM Framework with the power to load, save, update, delete and count data in a database. Uses reflection to execute SQL commands on a database and adopts the three-tier architecture to make the code cleaner and easier maintenance.

About

LLS.Core was created for the purpose of abstracting the data access and make loading and recording data simple and intuitive through the use of reflection to create the SQL commands. Created from a three-tier architecture, using generics and providing basic classes for business logic and data access, LLS.Core becomes a small but powerful ORM framework for small projects.

Features

  • Supports databases with Identity column type (SQL Server, MySQL)
  • Use reflection to generate the SQL commands to select, insert, update and delete data.
  • Provides means to filter data and orders them via SQL without having to load all data to memory for further filtration
  • All result sets are mapped to a data model or list of data model
  • Provides means for executing stored procedures but your return must be mapped manually
  • Use of parameters to prevent SQL Injection
  • Transactions
  • Simple architecture for adding new data providers
  • Use caching mechanism to minimize processing expense in the reflection

Code samples

The code examples below show the basic features provided by LLS.Core.

Import the namespaces
using LLS.BusinessLogic.Core;
using LLS.DataModel.Core;

Configure .config file
  • The key DATA.CONNECTIONSTRING represents the connection string to the database
  • The key DATA.RECORDAUDIT determines whether the audit will be done in the commands of insert, update and delete
  • The key DATA.PROVIDER determines the data provider used to communicate with the database
<configuration>
  <appSettings>
    <add key="DATA.CONNECTIONSTRING" value="Data Source=localhost;
              Initial Catalog=LLSCore;User Id=LLSCore;Password=LLSCore" />
    <add key="DATA.RECORDAUDIT" value="false"/>
    <add key="DATA.PROVIDER" value="System.Data.SqlClient" />
  </appSettings>
<appSettings> 

Create the data model class
[TableAttribute(Name = "Users")]
publicclass DMOUser : DMOBase
{
  #region Enumerators

  publicenum UserType
  {
    Common = 1,
    AccessGroup = 2,
    Administrator = 3
  }

  #endregion#region Properties

  [ColumnAttribute(Name = "UserId", Type = DbType.Int64, Size = 8, PrimaryKey = true)]
  public Int64? Id { get; set; }

  [ColumnAttribute(Name = "Name", Type = DbType.String, Size = 50)]
  publicstring Name { get; set; }

  [ColumnAttribute(Name = "LastName", Type = DbType.String, Size = 50)]
  publicstring LastName { get; set; }

  [ColumnAttribute(Name = "Email", Type = DbType.String, Size = 100)]
  publicstring Email { get; set; }

  [ColumnAttribute(Name = "Account", Type = DbType.String, Size = 20)]
  publicstring Account { get; set; }

  [ColumnAttribute(Name = "Password", Type = DbType.String, Size = 20)]
  publicstring Password { get; set; }

  [ColumnAttribute(Name = "Active", Type = DbType.Boolean, Size = 1)]
  publicbool? Active { get; set; }

  [ColumnAttribute(Name = "GroupId", Type = DbType.Int64, Size = 8)]
  public Int64? GroupId { get; set; }

  [ColumnAttribute(Name = "CreationDate", Type = DbType.DateTime, Size = 8)]
  public DateTime? CreationDate { get; set; }

  [ColumnAttribute(Name = "CreationUser", Type = DbType.String, Size = 20)]
  publicstring CreationUser { get; set; }

  [ColumnAttribute(Name = "ModificationDate", Type = DbType.DateTime, Size = 8)]
  public DateTime? ModificationDate { get; set; }

  [ColumnAttribute(Name = "ModificationUser", Type = DbType.String, Size = 20)]
  publicstring ModificationUser { get; set; }

  [ColumnAttribute(Name = "UserType", Type = DbType.Int32, Size = 4)]
  public UserType? Type { get; set; }

  #endregion
}

Create the data model object and the business object
  • The string passed to the constructor of the class BOGeneric represents the user that will be used in the recording of audit tables.
DMOUser dMOUser = new DMOUser();
BOGeneric<DMOUser> bOUser = new BOGeneric<DMOUser>("USERNAME");

Get data using EqualTo command
List<DMOUser> users = bOUser.Load(new Filter<DMOUser>().Equal("Name", "Leonardo"));

Get data using Like command and ordering them
List<DMOUser> users = bOUser.Load(new Filter<DMOUser>().Like("Name",
  PositionType.Left, "Leonardo").OrderBy(new OrderByProperty("Id",
  OrderType.Descending)));

Get all data without filter and order
List<DMOUser> users = bOUser.LoadAll();

Get paged data
  • 0 - The startRowIndex number
  • 10 - The maximumRows per select
List<DMOUser> users = bOUser.Load(new Filter<DMOUser>().Equal("Name",
  "Leonardo").OrderBy(new OrderByProperty("Id", OrderType.Descending)), 0, 10);

Insert new data
bOUser.Save(dMOUser);

Update data
bOUser.Update(dMOUser);

Delete data with filter
bOUser.Delete(new Filter<DMOUser>().Equal("Name", "Leonardo"));

Delete data without filter
bOUser.DeleteAll();

New examples and complete documentation will be added in the future.


Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles





Latest Images