28810 62a095df8f v0.9.13
- 增加 FreeSql.Extensions.JsonMap 扩展包,实现快速将对象映射为json字符串的方法;
- 优化 表达式解析未实现的错误提醒,如 $"";
2019-09-13 00:23:52 +08:00

14 lines
244 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Linq;
namespace FreeSql.DataAnnotations
{
/// <summary>
/// 当实体类属性为【对象】时以JSON形式映射存储
/// </summary>
public class JsonMapAttribute : Attribute
{
}
}