You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
-
Follow [@demisbellot](http://twitter.com/demisbellot) and [@ServiceStack](http://twitter.com/servicestack)
2
-
for twitter updates. [Ask questions on StackOverflow](http://stackoverflow.com/search?q=servicestack).
1
+
[Join the ServiceStack Google+ group](https://plus.google.com/u/0/communities/112445368900682590445) or
2
+
follow [@servicestack](http://twitter.com/servicestack) for updates.
3
3
4
-
ServiceStack.OrmLite is a **convention-based, configuration-free lightweight ORM** that uses standard **POCO classes and Data Annotation attributes** to infer its table schema.
4
+
# An Open Source Micro ORM for .NET
5
5
6
-
ServiceStack.OrmLite is an **independent library** and can be used with or without the ServiceStack webservices framework.
6
+
_Note: the source code is provided as-is - there is no commercial support available for ServiceStack_
7
7
8
8
# Introduction
9
9
@@ -20,7 +20,7 @@ OrmLite was designed with a focus on the core objectives:
20
20
* Expressive power and flexibility - with access to IDbCommand and raw SQL
21
21
* Cross platform - supports multiple dbs (currently: Sql Server, Sqlite, MySql, PostgreSQL, Firebird) running on both .NET and Mono platforms.
22
22
23
-
In OrmLite: **1 Class = 1 Table**. There's no hidden behaviour behind the scenes auto-magically managing hidden references to other tables.
23
+
In OrmLite: **1 Class = 1 Table**. There should be no surprising or hidden behaviour.
24
24
Any non-scalar properties (i.e. complex types) are text blobbed in a schema-less text field using [.NET's fastest Text Serializer](http://www.servicestack.net/mythz_blog/?p=176).
25
25
Effectively this allows you to create a table from any POCO type and it should persist as expected in a DB Table with columns for each of the classes 1st level public properties.
26
26
@@ -41,6 +41,8 @@ Effectively this allows you to create a table from any POCO type and it should p
41
41
42
42
OrmLite.SqlServer is also included in [ServiceStack](https://github.com/ServiceStack/ServiceStack/downloads).
43
43
44
+
_Note: the binary packages are provided as-is - there is no commercial support available for ServiceStack_
45
+
44
46
## Download published NuGet binaries without NuGet
45
47
46
48
For environments that doesn't have NuGet installed (e.g. OSX/Linux) you can still download the published binaries by
0 commit comments