Click here to Skip to main content
15,915,975 members

Duncan Edwards Jones - Professional Profile



Summary

Follow on Twitter LinkedIn      Blog RSS
78,760
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.


 
GeneralCQRS on Aure gets an outing Pin
Duncan Edwards Jones22-Mar-16 10:21
professionalDuncan Edwards Jones22-Mar-16 10:21 
GeneralRe: CQRS on Aure gets an outing Pin
Duncan Edwards Jones27-Mar-16 12:42
professionalDuncan Edwards Jones27-Mar-16 12:42 
GeneralTime to fix - 47 minutes Pin
Duncan Edwards Jones29-Feb-16 9:58
professionalDuncan Edwards Jones29-Feb-16 9:58 
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 
Have the very early cut of the code generation from the CQRS DSL designer working now...
XML
'------------------------------------------------------------------------------
' <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

Namespace Football_League.Player.eventDefinition

    '''<summary>
    '''Player registered with the league
    '''</summary>
    '''<remarks>
    '''This will generate the player's unique regsitration id
    '''</remarks>
    Partial Public Class Registered
        Inherits Object
        Implements IRegistered

        #Region "Private members"
        Private _PreviousClub As Date

        Private _Amateur As Boolean

        Private _DateOfBirth As Date
        #End Region

        '''<summary>
        '''Empty constructor for serialisation
        '''This should be removed if serialisation is not needed
        '''</summary>
        Sub New()
            MyBase.New
        End Sub

        '''<summary>
        '''Create and populate a new instance of this class from the underlying interface
        '''</summary>
        '''<remarks>
        '''This should be called when the event is created from an event stream
        '''</remarks>
        Sub New(ByVal RegisteredInit As IRegistered)
            MyBase.New
            _PreviousClub = RegisteredInit.PreviousClub
            _Amateur = RegisteredInit.Amateur
            _DateOfBirth = RegisteredInit.DateOfBirth
        End Sub

        '''<summary>
        '''Create and populate a new instance of this class from the underlying properties
        '''</summary>
        '''<remarks>
        '''This should be called when the event is created from an event stream
        '''</remarks>
        Sub New(ByVal PreviousClub_In As Date, ByVal Amateur_In As Boolean, ByVal DateOfBirth_In As Date)
            MyBase.New
            _PreviousClub = PreviousClub_In
            _Amateur = Amateur_In
            _DateOfBirth = DateOfBirth_In
        End Sub

        '''<summary>
        '''Where did the player come from
        '''</summary>
        Public ReadOnly Property PreviousClub() As Date
            Get
                Return _PreviousClub
            End Get
        End Property

        '''<summary>
        '''Is the player registered as an amateur
        '''</summary>
        Public ReadOnly Property Amateur() As Boolean
            Get
                Return _Amateur
            End Get
        End Property

        '''<summary>
        '''Player's date of birth
        '''</summary>
        Public ReadOnly Property DateOfBirth() As Date
            Get
                Return _DateOfBirth
            End Get
        End Property
    End Class
End Namespace

There's a long way to go from here - but this is definitely heading in the right direction!
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 
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 

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.