网站综合信息 www.bltoolkit.net
    • 标题:
    • Welcome to BLToolkit - Business Logic  
    • 关键字:
    •  
    • 描述:
    • Business Logic Toolkit is a set of components to simplify .NET application development. BLToolkit is 
    • 域名信息
    • 域名年龄:18年9个月26天  注册日期:2005年09月16日  到期时间:2017年09月16日
      注册商:GODADDY.COM, LLC 
    • 服务器空间
    • IP:50.63.202.32 同IP网站400个 详情
      地址:美国 亚利桑那州斯科茨代尔市Go Daddy集团公司
    • 备案信息
    • 备案号: 
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • 百度
    • 0  
    • 1,680  
    • 快照:2014-01-21  
    • Google
    • 0  
    • 0  
    • pr:2  
    • 雅虎
    • 0  
    •  
    •  
    • 搜搜
    • 0  
    •  
    •  
    • 搜狗
    • 0  
    •  
    • 评级:2/10  
    • 360搜索
    • 0  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • 7,231,747  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    bltoolkit.net

    域名年龄: 18年9个月26天
    注册时间: 2005-09-16
    到期时间: 2017-09-16
    注 册 商: GODADDY.COM, LLC

    获取时间: 2016年12月15日 13:12:14
    Domain Name: BLTOOLKIT.NET
    Registrar: GODADDY.COM, LLC
    Sponsoring Registrar IANA ID: 146
    Whois Server: whois.godaddy.com
    Referral URL: http://www.godaddy.com
    Name Server: NS51.DOMAINCONTROL.COM
    Name Server: NS52.DOMAINCONTROL.COM
    Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
    Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
    Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
    Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
    Updated Date: 2016-03-31
    Creation Date: 2005-09-16
    Expiration Date: 2017-09-16

    >>> Last update of whois database: Thu, 2016-Dec-15 05:18:22 GMT <<<

    For more information on Whois status codes, please visit https://icann.org/epp

    Domain Name: BLTOOLKIT.NET
    Registrar URL: http://www.godaddy.com
    Registrant Name: Igor Tkachev
    Registrant Organization:
    Name Server: NS51.DOMAINCONTROL.COM
    Name Server: NS52.DOMAINCONTROL.COM
    DNSSEC: unsigned

    For complete domain details go to:
    http://who.godaddy.com/whoischeck.aspx?domain=BLTOOLKIT.NET
    其他后缀域名
    • 顶级域名
    • 相关信息
    网站首页快照(纯文字版)
    抓取时间:2016年12月15日 13:12:13
    网址:http://www.bltoolkit.net/
    标题:Welcome to BLToolkit - Business Logic Toolkit for .NET
    关键字:
    描述:Business Logic Toolkit is a set of components to simplify .NET application development. BLToolkit is provided as source code that you can use "as is" or customize for ...
    主体:
    Welcome Guest, you are in: <root>Doc • Login|  Home  |  Download  |  Documentation  |  Discussions  |  Issues  |  License  |Navigation ¶Random PageCreate a new PageAll PagesCategoriesNavigation PathsAdministrationFile ManagementCreate AccountSearch the wiki»Discuss (4)View Page CodeHistoryWelcome to BLToolkit
    Print
    RSS
    Business Logic Toolkit is a set of components to simplify .NET application development. BLToolkit is provided as source code that you can use "as is" or customize for your applications. It is written in C# and compatible with .NET Frameworks 3.5 and 4.0, Silverlight 4, and Mono.
    • Aspects
    CacheAspect, CounterAspect, LoggingAspect, MixinAttribute. All of these are available now in C# (well, with one little limitation).
    [Counter, Log]
    public abstract class MyClass
    {
    [Cache]
    public virtual int MyMethod(int p1, int p2)
    {
    • ComponentModel
    Object Binder. Add Business Objects' native purity and flexibility to your ASP.NET and WinForms applications.
    • Data
    High-level, data provider independent wrapper for ADO.NET.
    using (DbManager db = new DbManager())
    {
    return db
    .SetCommand("SELECT * FROM Person")
    .ExecuteList<Person>();
    • Data.Linq
    Linq provider for numerous databases.
    from c in db.Customer where c.ContactName.Length > 5 select c.ContactName;
    • DataAccess
    Data Access Layer. Got bored of writing the same data access code over and over again? Now you are saved from being just a coding machine!
    public abstract class PersonAccessor : DataAccessor
    {
    [SqlText(@"SELECT * FROM Person WHERE FirstName = @firstName")]
    public abstract List<Person> GetPersonListByFirstName(string @firstName);    [SprocName("sp_GetPersonListByLastName")]
    public abstract List<Person> GetPersonListByLastName(string @lastName);
    • EditableObjects
    Set of base classes to build custom object hierarchies. The EditableObject and EditableList classes support such methods as AcceptChanges, RejectChanges, flag IsDirty, and PropertyChanged.
    public abstract class TestObject : EditableObject<TestObject>
    {
    public abstract string FirstName { get; set; }
    public abstract string LastName  { get; set; }
    }
    ...
    TestObject obj = TestObject.CreateInstance();
    obj.FirstName = "Tester";
    obj.AcceptChanges();
    • Mapping
    High performance object mapper will help you build your own ORM.
    • Reflection
    The TypeAccessor class allows to avoid slowness of Reflection and gain incredible performance of applications working with types dynamically.
    • Reflection.Emit
    The EmitHelper class - emit with a human face.
    emit
    // string.Format("Hello, {0}!", toWhom)
    //
    .ldstr   ("Hello, {0}!")
    .ldarg_1
    .call    (typeof(string), "Format", typeof(string), typeof(object))    // Console.WriteLine("Hello, World!");
    //
    .call    (typeof(Console), "WriteLine", typeof(string))
    .ret()
    ;
    • TypeBuilder
    Extensible run-time class generator.
    © 2002-2012 www.bltoolkit.net

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2024-07-04 13:39, Process in 0.0210 second.