Skip to content

Commit 671d616

Browse files
Merge pull request #282 from waqasm78/master
Added Documentation
2 parents a59f64e + 1caae81 commit 671d616

File tree

81 files changed

+6444
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+6444
-0
lines changed

docs/404.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
permalink: /404.html
3+
---
4+
5+
<div style="margin-top: 60px;"></div>
6+
Oops! The page has moved, or the link is broken.
7+
8+
Let us know how you landed on this page, and we will try to fix the link: <a href="mailto:[email protected]">[email protected]</a>
9+
10+
Go to <a href="http://entityframework-plus.net/">Home</a>

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
entityframework-plus.net

docs/_config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
highlighter: rouge
2+
gems:
3+
- jekyll-sitemap
4+
ga: "UA-55584370-8"
5+
defaults:
6+
-
7+
scope:
8+
path: ""
9+
values:
10+
layout: "default"
11+
-
12+
scope:
13+
path: ""
14+
type: "pages"
15+
values:
16+
last_modified_at: "2017-03-13"

docs/_data/meta.csv

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
permalink,title,meta-description,meta-keywords,h1,h2,nagivation,template
2+
index,Learn how to use Entity Framework Bulk Insert with Tutorials & Examples for Code First & Database First.,Learn how to use Entity Framework Bulk Insert with Tutorials & Examples for Code First & Database First.,,,,,full
3+
/404.html,Page Moved,Page Moved,,Page Moved,,,container-h1
4+
download,Download,Download,,Download,,no,full-h1
5+
pricing,Purchase,Purchase,,Purchase,,no,full-h1
6+
contact-us,Contact Us,Contact Us,,Contact Us,,no,full-h1
7+
tutorials,Tutorials,Tutorials,,Tutorials,,,container-h1
8+
overview,Overview,Overview,,Overview,,,
9+
requirements,Requirements,Requirements,,Requirements,,,
10+
installing,Installing,Installing,,Installing,,,
11+
upgrading,Upgrading,Upgrading,,Upgrading,,,
12+
licensing,Licensing,Licensing,,Licensing,,,
13+
tutorial-batch-operations,Batch Operations,Batch Operations,,Batch Operations,,,
14+
tutorial-linq,LINQ,LINQ,,LINQ,,,
15+
tutorial-query,Query,Query,,Query,,,
16+
tutorial-audit,Audit,Audit,,Audit,,,
17+
api,API,API,,API,,,
18+
audit,Audit,Audit,,Audit,,,
19+
batch-update,Batch Update,Batch Update,,Batch Update,,,
20+
batch-delete,Batch Delete,Batch Delete,,Batch Delete,,,
21+
linq-dynamic,LINQ Dynamic,LINQ Dynamic,,LINQ Dynamic,,,
22+
query-cache,Query Cache,Query Cache,,Query Cache,,,
23+
query-deferred,Query Deferred,Query Deferred,,Query Deferred,,,
24+
query-db-set-filter,Query DbSetFilter,Query DbSetFilter,,Query DbSetFilter,,,
25+
query-filter,Query Filter,Query Filter,,Query Filter,,,
26+
query-future,Query Future,Query Future,,Query Future,,,
27+
query-include-filter,Query IncludeFilter,Query IncludeFilter,,Query IncludeFilter,,,
28+
query-include-optimized,Query IncludeOptimized,Query IncludeOptimized,,Query IncludeOptimized,,,
29+
faq,FAQ,FAQ,,FAQ,,,
30+
issue-tracker,Issue Tracker,Issue Tracker,,Issue Tracker,,,
31+
faq-general,FAQ - General,FAQ - General,,FAQ - General,,,
32+
faq-installation,FAQ - Installation,FAQ - Installation,,FAQ - Installation,,,
33+
faq-license,FAQ - License,FAQ - License,,FAQ - License,,,
34+
problems,Problems,Problems,,Problems,,,
35+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{% if page.path contains "tutorials.md" %}
2+
{% assign is_context_home = true; %}
3+
{% assign is_context_home_css_active = "active"; %}
4+
{% elsif page.path contains "/tutorials/" %}
5+
{% assign is_context_tutorials = true; %}
6+
{% assign is_context_tutorials_css_active = "active"; %}
7+
{% elsif page.path contains "/api/" %}
8+
{% assign is_context_api = true; %}
9+
{% assign is_context_api_css_active = "active"; %}
10+
{% elsif page.path contains "/faq/" %}
11+
{% assign is_context_faq = true; %}
12+
{% assign is_context_faq_css_active = "active"; %}
13+
{% elsif page.path contains "/problems/" %}
14+
{% assign is_context_problems = true; %}
15+
{% assign is_context_problems_css_active = "active"; %}
16+
{% endif %}
17+
{% for num in (0..site.data.meta.size) %}
18+
{% if site.data.meta[num].permalink == page.permalink %}
19+
{% assign meta_index = num %}
20+
{% endif %}
21+
{% endfor %}

docs/_includes/aside.html

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
{% if page.path contains "/tutorials/" %}
2+
<div class="card card-layout-z1">
3+
<div class="card-header">
4+
<h2>Tutorials</h2>
5+
</div>
6+
<div class="card-body">
7+
8+
<h3>Getting Started</h3>
9+
<ul>
10+
<li><a href="{{ site.github.url }}/overview">Overview</a></li>
11+
<li><a href="{{ site.github.url }}/requirements">Requirements</a></li>
12+
<li><a href="{{ site.github.url }}/installing">Installing</a></li>
13+
<li><a href="{{ site.github.url }}/upgrading">Upgrading</a></li>
14+
</ul>
15+
16+
<h4>Tutorials</h4>
17+
<ul>
18+
<li><a href="{{ site.github.url }}/tutorial-batch-operations">Batch Operations</a></li>
19+
<li><a href="{{ site.github.url }}/tutorial-linq">LINQ</a></li>
20+
<li><a href="{{ site.github.url }}/tutorial-query">Query</a></li>
21+
<li><a href="{{ site.github.url }}/tutorial-audit">Audit</a></li>
22+
</ul>
23+
24+
</div>
25+
</div>
26+
27+
{% elsif page.path contains "/api/" %}
28+
<div class="card card-layout-z1">
29+
<div class="card-header">
30+
<h3>API</h3>
31+
</div>
32+
<div class="card-body">
33+
34+
35+
<h4>Batch Operations</h4>
36+
<ul>
37+
<li><a href="{{ site.github.url }}/batch-delete">Batch Delete</a></li>
38+
<li><a href="{{ site.github.url }}/batch-update">Batch Update</a></li>
39+
</ul>
40+
<h4>LINQ</h4>
41+
<ul>
42+
<li><a href="{{ site.github.url }}/linq-dynamic">LINQ Dynamic</a></li>
43+
</ul>
44+
45+
<h4>Query</h4>
46+
<ul>
47+
<li><a href="{{ site.github.url }}/query-cache">Query Cache</a></li>
48+
<li><a href="{{ site.github.url }}/query-deferred">Query Deferred</a></li>
49+
<li><a href="{{ site.github.url }}/query-db-set-filter">Query DbSetFilter</a></li>
50+
<li><a href="{{ site.github.url }}/query-filter">Query Filter</a></li>
51+
<li><a href="{{ site.github.url }}/query-future">Query Future</a></li>
52+
<li><a href="{{ site.github.url }}/query-include-filter">Query IncludeFilter</a></li>
53+
<li><a href="{{ site.github.url }}/query-include-optimized">Query IncludeOptimized</a></li>
54+
</ul>
55+
56+
<h4>Audit</h4>
57+
<ul>
58+
<li><a href="{{ site.github.url }}/audit">Audit</a></li>
59+
</ul>
60+
61+
</div>
62+
</div>
63+
64+
{% elsif page.path contains "/articles/" %}
65+
<div class="card card-layout-z1">
66+
67+
</div>
68+
69+
{% elsif page.path contains "/faq/" %}
70+
<div class="card card-layout-z1">
71+
<div class="card-header">
72+
<h3>FAQ</h3>
73+
</div>
74+
<div class="card-body">
75+
76+
<h4>Getting Help</h4>
77+
<ul>
78+
<li><a href="{{ site.github.url }}/contact-us">Contact Us</a></li>
79+
<li><a href="{{ site.github.url }}/issue-tracker">Issue Tracker</a></li>
80+
</ul>
81+
82+
<h4>FAQ</h4>
83+
<ul>
84+
<li><a href="{{ site.github.url }}/faq-general">General</a></li>
85+
<li><a href="{{ site.github.url }}/faq-installation">Installation</a></li>
86+
<li><a href="{{ site.github.url }}/faq-license">License</a></li>
87+
</ul>
88+
89+
</div>
90+
</div>
91+
{% endif %}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div class="header-angle">
2+
<div class="top-triangle wow slideInRight"></div>
3+
<div class="header-angle-inner">
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
</div>
2+
<div class="bottom-triangle-outer">
3+
<div class="bottom-triangle wow slideInLeft"></div>
4+
</div>
5+
</div>

docs/_includes/site-footer.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<footer class="site-footer">
2+
<div class="fixed-bottom">
3+
<div class="container">
4+
<div class="row justify-content-between">
5+
<div class="col-6 footer-site-copyright">
6+
Copyright &copy; 2014 - 2017
7+
<a href="http://www.zzzprojects.com/">ZZZ Projects Inc.</a>
8+
All rights reserved
9+
</div>
10+
<div class="col-6 footer-site-social">
11+
<div class="float-right">
12+
<a href="https://www.facebook.com/zzzprojects" target="_blank"><i class="fa fa-facebook"></i></a>
13+
<a href="https://twitter.com/zzzprojects" target="_blank"><i class="fa fa-twitter"></i></a>
14+
<a href="https://plus.google.com/+Zzzprojects_NetSQL" target="_blank"><i class="fa fa-google-plus"></i></a>
15+
<a href="http://zzzprojects.us9.list-manage.com/subscribe?u=cecbc4775cf67bf1ff82018af&amp;id=4765ffa5f8" target="_blank"><i class="fa fa-newspaper-o"></i></a>
16+
</div>
17+
</div>
18+
</div>
19+
</div>
20+
</div>
21+
</footer>

0 commit comments

Comments
 (0)