Skip to content

Instantly share code, notes, and snippets.

@eulerfx
eulerfx / gist:2087870
Created March 19, 2012 00:46
Atom document
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Example Feed</title>
<subtitle>A subtitle.</subtitle>
<link href="http://example.org/feed/" rel="self" />
<id>urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6</id>
<updated>2003-12-13T18:30:02Z</updated>
<author>
<name>John Doe</name>
<email>johndoe@example.com</email>
@eulerfx
eulerfx / FuncRetryHelper.cs
Created March 22, 2012 18:50
Function retry logic
public static Func<T> Retry(Func<T> original, int retryCount)
{
return () =>
{
while (true)
{
try
{
return original();
}
@eulerfx
eulerfx / TaskHelper.cs
Created March 22, 2012 19:00
TPL retry logic
/// <summary>
/// Utility methods for <see cref="System.Threading.Tasks.Task"/>.
/// </summary>
public static class TaskHelper
{
/// <summary>
/// Returns a task which retries the task returned by the specified task provider.
/// </summary>
/// <typeparam name="TResult"></typeparam>
/// <param name="taskProvider">The task returning function.</param>
@eulerfx
eulerfx / PurchaseOrder.cs
Last active September 30, 2022 20:20
An example or a DDD application service.
// A repository.
public interface IPurchaseOrderRepository
{
PurchaseOrder Get(string id);
// The commit method would likely be moved to a Unit of Work managed by infrastructure.
void Commit();
}
// A marker interface for a domain event.
public interface IDomainEvent { }
@eulerfx
eulerfx / Order.cs
Created April 25, 2012 04:24
Order Model
public class Order
{
public string Id { get; private set; }
public string Number { get; private set; }
public string CustomerId { get; private set; }
public DateTime Date { get; private set; }
public ICollection<OrderLineItem> Items { get; private set; }
public decimal ShippingCharge { get; private set; }
public decimal TaxCharge { get; private set; }
public decimal Total
@eulerfx
eulerfx / IOrderRepository.cs
Created April 25, 2012 04:32
IOrderRepository
public interface IOrderRepository
{
Order Get(string Id);
IList<Order> GetMostRecent(string customerId, int max = 20);
void Add(Order order);
void Remove(string Id);
}
@eulerfx
eulerfx / IOrderRepository.GetMostRecent.sql
Created April 26, 2012 03:54
IOrderRepository.GetMostRecent SQL
select top(@max)
Id,
OrderNumber,
Date,
Total = o.TaxCharge + o.ShippingCharge + (select sum(i.Amount * i.Quantity) from OrderLineItems i where i.OrderId = o.Id)
from Orders o
where o.CustomerId = @customerId
order by o.Date desc
@eulerfx
eulerfx / OrderReadModel.cs
Created April 26, 2012 03:57
OrderReadModel
public OrderReadModel
{
public string Id { get; private set; }
public string OrderNumber { get; private set; }
public DateTime Date { get; private set; }
public decimal Total { get; private set; }
}
@eulerfx
eulerfx / UserProfile_AlwaysValid.cs
Created May 20, 2012 01:11
Always valid user profile
public class UserProfile
{
public UserProfile(string name)
{
this.Name = name;
}
public string Name
{
get { return _name; }
@eulerfx
eulerfx / UserProfile_ValidationDeferred.cs
Created May 20, 2012 01:14
Not always-valid entity
public class UserProfile
{
public string Name { get; set; }
// implementation omitted
public bool IsValid { get; }
}
var profile = new UserProfile();
// must query to ascertain validity
if (!profile.IsValid)