其他分享
首页 > 其他分享> > 【Autofac打标签模式】PropertySource和Value

【Autofac打标签模式】PropertySource和Value

作者:互联网

【 Autofac打标签模式】开源DI框架扩展地址:

https://github.com/yuzd/Autofac.Annotation/wiki

<style></style>

PropertySource 指定数据源

属性说明
Path 文件路径,看下面的说明
OrderIndex 文件源排序,越大越先作为查找对象
Embedded 是否为内嵌资源

    [PropertySource("appsettings.json")] //这行也可以直接去掉 因为和默认的一样
    [Component]
    public class Student9
    {
        [Value("${a9}")]
        public string Name { get; set; }
    }
    

image

image

Value装配数据源里面的值

image

标签:reset,sizing,Autofac,PropertySource,Value,fontsize,katex,font,size
来源: https://www.cnblogs.com/yudongdong/p/11745725.html