.NET缺少的业务框架:Griffin Framework

jopen 9年前

Griffin Framework 是一个业务应用库拥有一些.NET本身缺少的功能。

A Command/Query seperation layer wich also supports events and request/reply type of messages.

Start small with our simple setup or our Inversion Of Control setup, later scale your appliction using our networking implementation.

Allows you to build micro services easily.

// requst/reply example  public class Login : Request<LoginReply>  {      public Login(string userName, string password)      {          Password = password;          UserName = userName;      }         public string UserName { get; private set; }      public string Password { get; private set; }  }    // the reply    public class LoginReply  {      public bool Success { get; set; }      public Account Account { get; set; }  }

项目主页:http://www.open-open.com/lib/view/home/1437375152943