Skip to content

Commit 9370a9c

Browse files
author
Mike
committed
UPDATE: blog templates
1 parent 18092eb commit 9370a9c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

_config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ permalink: pretty
77
relative_permalinks: true
88

99
# Setup
10-
title: Mike Stokes
11-
tagline: 'A Jekyll theme'
12-
description: 'A blog by a coder who loves tech and is lucky enough to play in his sandpit with it every day.'
10+
title: Code by Numbers
11+
tagline: 'A Coding Blog'
12+
description: 'Capturing the cool and useful things I find on my coding adventures in the Cloud'
1313
url: http://mikestokes.co
1414
baseurl: /
1515

1616
author:
17-
name: 'Mark Otto'
18-
url: https://twitter.com/mdo
17+
name: 'Mike Stokes'
18+
url: http://mikestokes.co
1919

2020
paginate: 5
2121

_includes/sidebar.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ <h1>
2626
{% endif %}
2727
{% endfor %}
2828

29-
<a class="sidebar-nav-item" href="{{ site.github.repo }}/archive/v{{ site.version }}.zip">Download</a>
30-
<a class="sidebar-nav-item" href="{{ site.github.repo }}">GitHub project</a>
31-
<span class="sidebar-nav-item">Currently v{{ site.version }}</span>
29+
<!--a class="sidebar-nav-item" href="{{ site.github.repo }}/archive/v{{ site.version }}.zip">Download</a-->
30+
<a class="sidebar-nav-item" href="{{ site.github.repo }}">GitHub</a>
31+
<!--span class="sidebar-nav-item">Currently v{{ site.version }}</span-->
3232
</nav>
3333

3434
<p>&copy; {{ site.time | date: '%Y' }}. All rights reserved.</p>

_posts/2015-03-08-storing-lists-in-entity-framework.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Entity Framework and Lists
3+
title: Using Lists with Entity Framework
44
category: programming
55
tags: [c#, entity framework]
66
---
77

88
By default [Entity Framework](http://www.asp.net/entity-framework) (as of version 6.x) does not support serialization of Lists to a database field. We could always go relational with this, creating another database table for the List values and use a foreign-key relationship with the parent entity. But sometimes, for simplicity sake, we want to store the List values within the same entity.
99

10-
Out of the box, the following is *not* possible by default in Entity Framework:
10+
Out of the box, the following is *not* possible in Entity Framework:
1111

1212
```c#
1313
[Table("YourTableName")]

0 commit comments

Comments
 (0)