Click here to Skip to main content
15,891,777 members

Duncan Edwards Jones - Professional Profile



Summary

Follow on Twitter LinkedIn      Blog RSS
78,699
Author
7,578
Authority
55,669
Debator
698
Editor
181
Enquirer
2,232
Organiser
6,046
Participant
C# / SQL Server developer
Microsoft MVP (Azure) 2017
Microsoft MVP (Visual Basic) 2006, 2007

 

Groups

Below is the list of groups in which the member is participating

The CodeProject focus group is an informal and changeable group of long-suffering CodeProject members willing to give their time and patience to discussing product, branding and marketing ideas with those looking to actually understand what developers think.

To apply to join this group simply hit the "Apply to join this group" button.

To seek the wisdom, guidance, and hopefully a little enlightenment, email focus@codeproject.com and we'll work out a time to discuss your thoughts.
This is a Collaborative Group
This member has Member status in this group

39 members

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralShould an aggregate own it's event stream..or...? Pin
Duncan Edwards Jones6-Dec-15 8:10
professionalDuncan Edwards Jones6-Dec-15 8:10 
GeneralRe: Should an aggregate own it's event stream..or...? Pin
Duncan Edwards Jones12-Dec-15 11:14
professionalDuncan Edwards Jones12-Dec-15 11:14 
GeneralCQRS/DSL - thoughts on identity groups Pin
Duncan Edwards Jones22-Nov-15 8:57
professionalDuncan Edwards Jones22-Nov-15 8:57 
GeneralRe: CQRS/DSL - thoughts on identity groups Pin
Duncan Edwards Jones24-Nov-15 12:05
professionalDuncan Edwards Jones24-Nov-15 12:05 
NewsCQRS/DSL - code generation update Pin
Duncan Edwards Jones16-Nov-15 10:41
professionalDuncan Edwards Jones16-Nov-15 10:41 
GeneralRe: CQRS/DSL - code generation update Pin
Duncan Edwards Jones19-Nov-15 10:30
professionalDuncan Edwards Jones19-Nov-15 10:30 
GeneralRe: CQRS/DSL - code generation update Pin
Duncan Edwards Jones15-Dec-15 4:11
professionalDuncan Edwards Jones15-Dec-15 4:11 
GeneralRe: CQRS/DSL - code generation update Pin
Duncan Edwards Jones16-Dec-15 6:03
professionalDuncan Edwards Jones16-Dec-15 6:03 
And code generation for projections....

VB.NET
'------------------------------------------------------------------------------
' <auto-generated>
'     This code was generated by a tool.
'     Runtime Version:4.0.30319.42000
'
'     Changes to this file may cause incorrect behavior and will be lost if
'     the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------

Option Strict Off
Option Explicit On

Imports CQRSAzure
Imports CQRSAzure.Aggregation
Imports CQRSAzure.EventSourcing
Imports Herd.Cow
Imports Herd.Cow.eventDefinition

Namespace Herd.Cow.projection
    
    Partial Public Class Location
        Inherits Object
        Implements ILocation
        
        #Region "Private members"
        Private _In_Shed As Boolean
        
        Private _Location As String
        #End Region
        
        '''<summary>
        '''Is the animal indoors
        '''</summary>
        Public ReadOnly Property In_Shed() As Boolean Implements ILocation.In_Shed
            Get
                Return _In_Shed
            End Get
        End Property
        
        '''<summary>
        '''The name of the location of the animal
        '''</summary>
        Public ReadOnly Property Location() As String Implements ILocation.Location
            Get
                Return _Location
            End Get
        End Property
        
        '''<summary>
        '''Animal was moved to a different field
        '''</summary>
        Public Overloads Sub HandleEvent(ByVal eventToHandle As IMoved_To_Field) Implements CQRSAzure.EventSourcing.IHandleEvent(Of IMoved_To_Field).HandleEvent
            'On Moved To Field, For In Shed, unset the flag 
            _In_Shed = False
            'The name of the field the animal was moved to
            _Location = eventToHandle.Moved_To
        End Sub

        '''<summary>
        '''Animal was moved to a shed
        '''</summary>
        Public Overloads Sub HandleEvent(ByVal eventToHandle As IMoved_To_Shed) Implements CQRSAzure.EventSourcing.IHandleEvent(Of IMoved_To_Shed).HandleEvent
            'Flag the animal as being in the shed
            _In_Shed = True
            'On Moved To Shed, For Location, set to the value Shed Name
            _Location = eventToHandle.Shed_Name
        End Sub
    End Class
End Namespace

GeneralRe: CQRS/DSL - code generation update Pin
Duncan Edwards Jones22-Dec-15 0:56
professionalDuncan Edwards Jones22-Dec-15 0:56 
GeneralRe: CQRS/DSL - code generation update Pin
Duncan Edwards Jones25-Dec-15 11:39
professionalDuncan Edwards Jones25-Dec-15 11:39 
GeneralCreating a DSL with graphical designer is hard... Pin
Duncan Edwards Jones2-Nov-15 11:29
professionalDuncan Edwards Jones2-Nov-15 11:29 
GeneralCQRS-on-Azure - progress update Pin
Duncan Edwards Jones24-Aug-15 7:09
professionalDuncan Edwards Jones24-Aug-15 7:09 
GeneralDSL Modelling - powerful feature, not much documentation Pin
Duncan Edwards Jones11-Jun-15 3:09
professionalDuncan Edwards Jones11-Jun-15 3:09 
GeneralMy 2015 personal predictions Pin
Duncan Edwards Jones21-Dec-14 11:48
professionalDuncan Edwards Jones21-Dec-14 11:48 
GeneralThe first law of driving a 70s British car Pin
Duncan Edwards Jones14-Dec-14 5:10
professionalDuncan Edwards Jones14-Dec-14 5:10 
GeneraleBook - A .NET developer's guide to printing - Part 1 Pin
Duncan Edwards Jones2-Mar-10 11:39
professionalDuncan Edwards Jones2-Mar-10 11:39 
GeneralRe: eBook - A .NET developer's guide to printing - Part 1 Pin
ermeglio7119-Mar-10 11:14
ermeglio7119-Mar-10 11:14 
GeneralRe: eBook - A .NET developer's guide to printing - Part 1 Pin
Duncan Edwards Jones8-Apr-10 9:01
professionalDuncan Edwards Jones8-Apr-10 9:01 
General2001 Pin
Duncan Edwards Jones10-Jun-09 2:39
professionalDuncan Edwards Jones10-Jun-09 2:39 
GeneralA happy new year to all... Pin
Duncan Edwards Jones27-Dec-08 10:28
professionalDuncan Edwards Jones27-Dec-08 10:28 
GeneralWhy I won't do your homework for you... Pin
Duncan Edwards Jones16-May-08 0:19
professionalDuncan Edwards Jones16-May-08 0:19 
GeneralIt's all going .NET 3.5 .... Pin
Duncan Edwards Jones27-Aug-07 22:58
professionalDuncan Edwards Jones27-Aug-07 22:58 
GeneralIt's all going .NET 2.0 Pin
Duncan Edwards Jones25-Jun-06 12:21
professionalDuncan Edwards Jones25-Jun-06 12:21 
GeneralBusy tone :: please try again later Pin
Duncan Edwards Jones1-Nov-05 22:50
professionalDuncan Edwards Jones1-Nov-05 22:50 
GeneralProof of concept application complete Pin
Duncan Edwards Jones10-Jun-04 1:01
professionalDuncan Edwards Jones10-Jun-04 1:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.